diff options
author | Julius Härtl <jus@bitgrid.net> | 2017-05-19 16:11:42 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2017-05-19 16:18:09 +0200 |
commit | 52f10c436e98733a552d8e2ab7a03a68653a2215 (patch) | |
tree | bf812cfb196c3353f4800307ca04e9ee94a7385d /apps/theming/css | |
parent | 70c750dacc5636f81c38878ddaf463ff397a6a66 (diff) | |
download | nextcloud-server-52f10c436e98733a552d8e2ab7a03a68653a2215.tar.gz nextcloud-server-52f10c436e98733a552d8e2ab7a03a68653a2215.zip |
Scale logo only for custom ones
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/theming.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 6057a15f425..ac303f61a6b 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -45,6 +45,9 @@ #header .logo, #header .logo-icon { background-image: url(#{$image-logo}); + @if $theming-logo-mime != '' { + background-size: contain; + } } #body-login, |