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/_user.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/_user.less')
-rw-r--r-- | public/less/_user.less | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/public/less/_user.less b/public/less/_user.less index cc57239b59..3b29436bf7 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -37,6 +37,22 @@ } } } + + #profile-avatar { + @media only screen and (max-width: 768px) { + height: 250px; + overflow: hidden; + + img { + max-height: 768px; + max-width: 768px; + } + } + } + + @media only screen and (max-width: 768px) { + width: 100%; + } } .ui.repository.list { |