diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2018-08-29 19:48:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-29 19:48:56 +0200 |
| commit | 6fb39572650c9708df752a04ca38320301b85c8e (patch) | |
| tree | c5c3ecf4b86dc145f515c951eca2a7cf185e3b89 | |
| parent | dd78e1d1b49e7a011bee241d2cb087515640b746 (diff) | |
| download | wiki-6fb39572650c9708df752a04ca38320301b85c8e.tar.gz wiki-6fb39572650c9708df752a04ca38320301b85c8e.tar.bz2 wiki-6fb39572650c9708df752a04ca38320301b85c8e.zip | |
Avoid scrolling bar when not needed
| -rw-r--r-- | _sass/style.scss | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/_sass/style.scss b/_sass/style.scss index 31c7915..c40fd08 100644 --- a/_sass/style.scss +++ b/_sass/style.scss @@ -105,11 +105,12 @@ img { } header { - width:270px; - float:left; - position:fixed; - -webkit-font-smoothing:subpixel-antialiased; - overflow-y: scroll; + width: 272px; + float: left; + position: fixed; + -webkit-font-smoothing: subpixel-antialiased; + overflow-y: auto; + overflow-x: auto; max-height: 100%; } |
