diff options
| author | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-19 08:13:56 -0500 |
|---|---|---|
| committer | Matt Kosarek <matt.kosarek@canonical.com> | 2026-02-19 08:13:56 -0500 |
| commit | 4d1beea73810af4641d074f974ad9c196a7e8d6e (patch) | |
| tree | 4d43200e692bf6ef5a37e3327511437d151eb679 | |
| parent | 31207563ad483998a864bdb5c03c57b10767d95a (diff) | |
Fixing body size
| -rw-r--r-- | public/index.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/public/index.css b/public/index.css index 63098f9..0866b71 100644 --- a/public/index.css +++ b/public/index.css @@ -1,5 +1,6 @@ body { width: 50vw; + height: calc(100vh - 2rem); font-family: "Noto Sans", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 14px; background-color: transparent; @@ -223,14 +224,14 @@ input:focus { } /* Phone screen adjustments */ -@media only screen and (device-width: 1440px), -only screen and (max-width:1440px) { +@media only screen and (device-width: 1280px), +only screen and (max-width:1280px) { header > h1 { font-size: 1.5rem; } body { - width: 70vw !important; + width: 80vw !important; } } |
