refactor: fix css

This commit is contained in:
Matthew McPeak 2026-07-16 14:37:20 -04:00
parent dd700d02ad
commit 524e88bba3
4 changed files with 5 additions and 10 deletions

View file

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Mercury admin console — manage dynamic CRUD tables, query registry, cache, users, and permissions." />
<title>Mercury</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
</head>

2
ui/public/robots.txt Normal file
View file

@ -0,0 +1,2 @@
User-agent: *
Disallow: /

View file

@ -7,14 +7,6 @@
text-rendering: optimizeLegibility;
}
body {
margin: 0;
font-family: var(--font-serif);
background-color: var(--surface-0);
color: var(--text-body);
min-height: 100vh;
}
h1,
h2,
h3 {

View file

@ -1,5 +1,5 @@
<template>
<div class="login-page">
<main class="login-page">
<div class="login-card">
<div class="login-brand">
<img src="/favicon.svg" class="brand-ornament" alt="" />
@ -32,7 +32,7 @@
<NychButton type="submit" :loading="loading" class="w-full">Sign In</NychButton>
</form>
</div>
</div>
</main>
</template>
<script setup lang="ts">