diff options
author | zak <e-zk@users.noreply.github.com> | 2022-12-20 11:45:29 +1000 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-20 07:37:27 +0530 |
commit | e5d35c4deccd35a12b138d089dcd15a2c8ac18c1 (patch) | |
tree | 97d8c1285393705c49cb921204b81797b37f4795 /static | |
parent | 42bce06630791cfe158f65769bb88e1a619b68e0 (diff) | |
download | legit-e5d35c4deccd35a12b138d089dcd15a2c8ac18c1.tar.gz legit-e5d35c4deccd35a12b138d089dcd15a2c8ac18c1.tar.bz2 legit-e5d35c4deccd35a12b138d089dcd15a2c8ac18c1.zip |
css: scroll file content x-axis only
- we don't need any overflow scrolling for the y-axis.
- set overflow-x to 'auto' so that the scroll bar only shows
when the content does overflow.
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css index 6d805a1..e5833fd 100644 --- a/static/style.css +++ b/static/style.css @@ -235,7 +235,8 @@ a:hover { .file-content { background: var(--light-gray); - overflow: scroll; + overflow-y: hidden; + overflow-x: auto; } .diff-type { |