diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-24 15:01:03 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-24 15:01:03 +0200 |
| commit | 2453b598def94649cc7ce9af7155bfaad40cce12 (patch) | |
| tree | 0267ac67c2e9d108bcf4b3006d55aaafc5deb8d8 /internal/web/static | |
| parent | 35f98e0a8a0573d51a4412ec7f60c7de068acfe6 (diff) | |
| download | lectio-2453b598def94649cc7ce9af7155bfaad40cce12.tar.gz lectio-2453b598def94649cc7ce9af7155bfaad40cce12.zip | |
web: /settings page to edit config + books.toml, persisted and applied live; v0.14.0
Diffstat (limited to 'internal/web/static')
| -rw-r--r-- | internal/web/static/base.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/web/static/base.css b/internal/web/static/base.css index a233e9d..c8e1bd4 100644 --- a/internal/web/static/base.css +++ b/internal/web/static/base.css @@ -278,3 +278,10 @@ a { grid-template-columns: 1fr; } } + +/* Settings form — a simple labeled column; themes own colour. */ +.settings { display: flex; flex-direction: column; gap: var(--space-2); max-width: 40rem; font-family: var(--font-ui); } +.settings label { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-start; } +.settings .row { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; } +.settings textarea { width: 100%; font-family: var(--font-mono); } +.settings .saved { font-family: var(--font-ui); } |
