summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-22 12:58:12 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-22 12:58:12 +0200
commit2366af57461cd7e76028960a444672a3ce0c3634 (patch)
tree4e4a7edab93cab0425e64d83a73bc0380eb8a873
parent99be82718b436708da00fb2a0e736c628159283d (diff)
Fix mobile viewport width from 800px to 100%
-rw-r--r--public/stylesheets/admin.css7
1 files changed, 1 insertions, 6 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index ef6cb11..7b06c7d 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -1002,14 +1002,9 @@ div#page_editor {
1002 padding-right: 5px; 1002 padding-right: 5px;
1003 } 1003 }
1004 1004
1005 /* Fixed 800px width will overflow narrow viewports despite
1006 border-box -- every sibling rule in this block uses 100% instead.
1007 Worth checking on an actual phone; looks unfinished rather than
1008 intentional. Not changed here since it wasn't part of what you
1009 asked to fix. */
1010 #page_editor textarea#page_body { 1005 #page_editor textarea#page_body {
1011 box-sizing: border-box; 1006 box-sizing: border-box;
1012 width: 800px; 1007 width: 100%;
1013 height: 50rem; 1008 height: 50rem;
1014 } 1009 }
1015 1010