diff options
author | Hakim El Hattab | 2018-12-18 10:14:18 +0100 |
---|---|---|
committer | Hakim El Hattab | 2018-12-18 10:14:18 +0100 |
commit | 9f1856d55be7b6ddb5df0df5d06f579966233822 (patch) | |
tree | 118ed77a38171186b8041dfba48ef37e436204ba /css/reveal.css | |
parent | 6fe0cbc0dde8a3409194eb1f346ae18313a9c2c5 (diff) |
fix notes layout when container isnt as wide as viewport
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/css/reveal.css b/css/reveal.css index dc12ee4..ebc399f 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -1488,7 +1488,7 @@ body { .reveal .speaker-notes { display: none; position: absolute; - width: 25vw; + width: 33.3333333333%; height: 100%; top: 0; left: 100%; @@ -1516,7 +1516,7 @@ body { opacity: 0.5; } .reveal.show-notes { - max-width: 75vw; + max-width: 75%; overflow: visible; } .reveal.show-notes .speaker-notes { |