diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-12 14:18:58 +0000 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-12 14:18:58 +0000 |
commit | 4c81ca70666cfcf89a5de9ab9d6de063b3a9301a (patch) | |
tree | d81a21cb263e7669aa0f483838d8424a1c8f18e6 /app | |
parent | 292c2e4a031360e5b58385f4b6b7f3e47a8ca988 (diff) | |
download | thoughts-4c81ca70666cfcf89a5de9ab9d6de063b3a9301a.tar.gz thoughts-4c81ca70666cfcf89a5de9ab9d6de063b3a9301a.tar.bz2 thoughts-4c81ca70666cfcf89a5de9ab9d6de063b3a9301a.zip |
Fix weird scrollbars on code snippets
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/main/rouge.css.erb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/assets/stylesheets/main/rouge.css.erb b/app/assets/stylesheets/main/rouge.css.erb index 1330437..123da27 100644 --- a/app/assets/stylesheets/main/rouge.css.erb +++ b/app/assets/stylesheets/main/rouge.css.erb | |||
@@ -3,7 +3,10 @@ | |||
3 | .highlight { | 3 | .highlight { |
4 | background-color: white; | 4 | background-color: white; |
5 | padding: 1em; | 5 | padding: 1em; |
6 | overflow-x: scroll; | 6 | } |
7 | |||
8 | div.highlight { | ||
9 | overflow-x: auto; | ||
7 | } | 10 | } |
8 | 11 | ||
9 | .highlight .err { | 12 | .highlight .err { |