diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-09-28 09:11:17 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-09-28 09:11:17 -0400 |
commit | 66988b8f0ae28767545631bffd957378f52171b9 (patch) | |
tree | 6b628fdee76f694dd8dd8e2dfcc3d50523b358a8 | |
parent | 112227b79cded6e194ac8a9532c08a02d41ede4c (diff) | |
download | fosdem-2018-presentation-66988b8f0ae28767545631bffd957378f52171b9.tar fosdem-2018-presentation-66988b8f0ae28767545631bffd957378f52171b9.tar.gz |
max-height and overflow for code blocks (closes #16)
-rw-r--r-- | css/main.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/css/main.css b/css/main.css index 691f47b..2a79a61 100644 --- a/css/main.css +++ b/css/main.css @@ -212,7 +212,8 @@ body { .reveal code { font-family: monospace; - overflow-x: auto; + overflow: auto; + max-height: 400px; } .reveal table th, |