diff --git a/src/app.css b/src/app.css index 180d75f..8fb6adf 100644 --- a/src/app.css +++ b/src/app.css @@ -40,7 +40,6 @@ body { } .admin-card { background: #11161a; - border: 1px solid rgba(229, 228, 234, 0.12); border-radius: 12px; padding: 1.4em; display: flex; @@ -56,7 +55,7 @@ body { } .admin-input { background: #0a0d0f; - border: 1px solid rgba(229, 228, 234, 0.2); + border: none; border-radius: 8px; padding: 0.6em 0.7em; color: #e5e4ea; @@ -65,6 +64,10 @@ body { width: 100%; box-sizing: border-box; } +.admin-input:focus-visible { + outline: 2px solid rgba(66, 175, 56, 0.6); + outline-offset: 1px; +} .admin-btn { background: #42af38; color: #06210a; @@ -86,9 +89,8 @@ body { color: #fff; } .admin-btn-ghost { - background: transparent; + background: rgba(255, 255, 255, 0.08); color: #e5e4ea; - border: 1px solid rgba(229, 228, 234, 0.3); } .admin-msg { margin: 0; diff --git a/src/routes/admin/(dashboard)/+layout.svelte b/src/routes/admin/(dashboard)/+layout.svelte index 5764824..196be51 100644 --- a/src/routes/admin/(dashboard)/+layout.svelte +++ b/src/routes/admin/(dashboard)/+layout.svelte @@ -2,6 +2,7 @@ import { page } from '$app/state'; import type { Snippet } from 'svelte'; import type { LayoutData } from './$types'; + import intelidom_banner from '$lib/assets/intelidom_banner.svg'; let { data, children }: { data: LayoutData; children: Snippet } = $props(); @@ -23,7 +24,7 @@