diff options
author | kolaente <konrad@kola-entertainments.de> | 2018-07-26 17:25:41 +0200 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-07-26 18:25:41 +0300 |
commit | 8d1ad55598311e079e2af07fb7aa3f9992ba4f65 (patch) | |
tree | e5832a83330fc27a7b9ce103e9de882a75615047 /public/less/_dashboard.less | |
parent | f847884d1678ce02cdf0d4ba346a122e0aa7be44 (diff) | |
download | gitea-8d1ad55598311e079e2af07fb7aa3f9992ba4f65.tar.gz gitea-8d1ad55598311e079e2af07fb7aa3f9992ba4f65.zip |
Responsive design fixes (#4508)
* reset to master
* build css
* Fixed spacing
Diffstat (limited to 'public/less/_dashboard.less')
-rw-r--r-- | public/less/_dashboard.less | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/public/less/_dashboard.less b/public/less/_dashboard.less index 85787ce2be..8fcdb6b385 100644 --- a/public/less/_dashboard.less +++ b/public/less/_dashboard.less @@ -26,6 +26,13 @@ top: 7px; left: 90%; width: 15%; + + @media only screen and (max-width: 768px) { + top: 10px; + left: auto; + width: auto; + right: 13px; + } } } @@ -40,12 +47,16 @@ right: 0!important; left: auto!important; } + + @media only screen and (max-width: 768px) { + width: 100%; + } } .right.stackable.menu > .item.active { color: #d9453d; } } - + /* Accomodate for Semantic's 1px hacks on .attached elements */ .dashboard-repos { margin: 0 1px; |