diff options
author | Sheogorath | 2019-05-26 22:19:57 +0200 |
---|---|---|
committer | GitHub | 2019-05-26 22:19:57 +0200 |
commit | 388f034750a1a3b11aa49b88f3589486e9b5de76 (patch) | |
tree | a03e593ba57061768f8b41c838afd2ab9e8826de /public | |
parent | e2990c56fd6d0c37f2b15cc793cbe595c88cf82f (diff) | |
parent | 5e500de6284326b5da93283ffee6a75e9c14741f (diff) |
Merge pull request #81 from SISheogorath/fix/codemirrorBottomCSS
Fix CodeMirror toolbar hiding content
Diffstat (limited to '')
-rw-r--r-- | public/css/index.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/public/css/index.css b/public/css/index.css index fb8356eb..d266ad88 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -106,7 +106,10 @@ body.night{ color: #78B2F2 !important; } .CodeMirror-sizer { - margin-bottom: 0px !important; + /* Make sure CodeMirror doesn't hide text under the status bar + * 26px is the height of the status bar. + */ + margin-bottom: 26px !important; } .CodeMirror-insert-match { background: lawngreen; |