style(auth): tighten the sign-in field, and stop calling the runtime a worker

The email field sat a little taller than the action below it. Two comments
also described this page as rendering inside a worker, which is not how the
control plane runs; what they were reaching for is that nothing preprocesses
this file, so the design tokens are written out longhand.
This commit is contained in:
Wanjohi
2026-09-17 23:15:56 +03:00
parent 74391714d0
commit aecae0c69e
2 changed files with 9 additions and 8 deletions

View File

@@ -190,9 +190,9 @@ const THEME_NESTRI: Theme = {
favicon: 'https://nestri.io/images/favicon.ico',
// Mona Sans for the display line and the action, Geist for everything a
// person reads or types. Served from the Fontsource CDN because the
// self-hosted font packages need a bundler and this page is a string
// rendered in a Worker with no build step. The family names must match the
// ones the stylesheet asks for.
// self-hosted font packages need a bundler and nothing preprocesses this
// page — it is assembled as a string at request time. The family names must
// match the ones the stylesheet asks for.
css: `@import url('https://cdn.jsdelivr.net/fontsource/css/mona-sans:vf@latest/wght.css');@import url('https://cdn.jsdelivr.net/fontsource/css/geist:vf@latest/wght.css');`
};