diff --git a/web/src/app.tsx b/web/src/app.tsx index 54205c4..a5e58a9 100644 --- a/web/src/app.tsx +++ b/web/src/app.tsx @@ -26,7 +26,7 @@ const FieldsPage = lazy(() => ); function FormFallback() { - return
Loading…
; + return
Loading…
; } export function App() { diff --git a/web/src/auth/login-page.tsx b/web/src/auth/login-page.tsx index 32b9e18..6009685 100644 --- a/web/src/auth/login-page.tsx +++ b/web/src/auth/login-page.tsx @@ -53,7 +53,7 @@ export function LoginPage() { /> {errorKey && ( -

+

{t(errorKey)}

)} diff --git a/web/src/authorities/authorities-page.tsx b/web/src/authorities/authorities-page.tsx index 676f92c..b0696af 100644 --- a/web/src/authorities/authorities-page.tsx +++ b/web/src/authorities/authorities-page.tsx @@ -53,7 +53,7 @@ export function AuthoritiesPage() { role="tab" aria-selected={k === currentKind} className={({ isActive }) => - `rounded px-3 py-1 text-sm ${isActive ? "bg-neutral-800 text-white" : "border"}` + `rounded-md px-3 py-1 text-sm ${isActive ? "bg-primary text-primary-foreground" : "border"}` } > {t(`authorities.${k}`)} @@ -63,13 +63,13 @@ export function AuthoritiesPage() {