diff options
author | Antoine GIRARD <sapk@sapk.fr> | 2015-03-19 01:10:37 +0100 |
---|---|---|
committer | Antoine GIRARD <sapk@sapk.fr> | 2015-03-19 01:16:55 +0100 |
commit | ea9cf5ec8c231cadc30eb33069cc76447bf0cf14 (patch) | |
tree | c30e9881f515b7ada562e70e2c10f1650728c38f /public | |
parent | e9c599b48ac77114f1d7761855c72a980c751b53 (diff) | |
download | gitea-ea9cf5ec8c231cadc30eb33069cc76447bf0cf14.tar.gz gitea-ea9cf5ec8c231cadc30eb33069cc76447bf0cf14.zip |
Fix the little default in the navbar of the dashboard
Diffstat (limited to 'public')
-rw-r--r-- | public/ng/css/gogs.css | 3 | ||||
-rw-r--r-- | public/ng/less/gogs/dashboard.less | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index 43931e94d3..fd1fb59331 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -732,7 +732,8 @@ ol.linenums { #dashboard-header > .menu-line > li.right > a { font-size: 1.2em; color: #444444; - padding: .4em .8em; + margin: -12px 0px; + padding: 22px 0.8em; } #dashboard-header > .menu-line > li.right > a:hover { background-color: transparent; diff --git a/public/ng/less/gogs/dashboard.less b/public/ng/less/gogs/dashboard.less index 435020fd1a..62764c48a0 100644 --- a/public/ng/less/gogs/dashboard.less +++ b/public/ng/less/gogs/dashboard.less @@ -27,7 +27,8 @@ > a { font-size: 1.2em; color: @dashboardHeaderLinkColor; - padding: .4em .8em; + margin: -12px 0px; + padding: 22px 0.8em; &:hover { background-color: transparent; color: @dashboardHeaderLinkHoverColor; |