diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-02 09:17:13 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-02 09:17:13 +0800 |
commit | b4ff6f6628475c404beb898f1dceba0cb6b0df2c (patch) | |
tree | dab60f8136d063ebf2a196a5aa01ca09b7aaecd2 | |
parent | spec: Update (diff) | |
download | website-b4ff6f6628475c404beb898f1dceba0cb6b0df2c.tar.gz website-b4ff6f6628475c404beb898f1dceba0cb6b0df2c.tar.zst website-b4ff6f6628475c404beb898f1dceba0cb6b0df2c.zip |
Correct overflow behavior
-rw-r--r-- | assets/style.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css index 949f7d1..0ac750e 100644 --- a/assets/style.css +++ b/assets/style.css @@ -20,6 +20,7 @@ html { body { margin: 0rem; + overflow-x: clip; } h1 { @@ -69,6 +70,7 @@ aside#sidebar > ul { div#main-and-footer { margin-left: min(33%, 200px); padding: 0px 10px; + overflow-x: auto; } main { |