diff options
author | silverwind <me@silverwind.io> | 2019-02-25 11:37:04 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-02-25 12:37:04 +0200 |
commit | d8d24a56195e0724a5c1a82e8c620a2b879f6ebd (patch) | |
tree | 8b715789fa434e3217da92bba9020e01720144b2 /public/less/_base.less | |
parent | 28fcbf33dc67cf5f7940bf799e8ed863aca717b4 (diff) | |
download | gitea-d8d24a56195e0724a5c1a82e8c620a2b879f6ebd.tar.gz gitea-d8d24a56195e0724a5c1a82e8c620a2b879f6ebd.zip |
UI: Fix scrollbar always present on page body (#6177)
Diffstat (limited to 'public/less/_base.less')
-rw-r--r-- | public/less/_base.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index 17638b7632..51e227b06c 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -1,7 +1,7 @@ body { font-family: "Lato", "Segoe UI", "Microsoft YaHei", Arial, Helvetica, sans-serif !important; background-color: #fff; - overflow-y: scroll; + overflow-y: auto; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; @@ -442,7 +442,7 @@ footer { background-color: white; border-top: 1px solid #d6d6d6; width: 100%; - height: 40px; + flex-basis: 40px; color: #888888; .container { width: 100vw !important; |