diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-08 18:19:52 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-08 18:19:52 +0100 |
commit | 563df2a9ea2722b2e0cc863ce116619dacf8bb36 (patch) | |
tree | a7c327fe9514c95a3d0c1ddae6ff419318568e64 | |
parent | 42121fe4d71237f769831e2b33def779e0566e7c (diff) | |
download | nextcloud-server-563df2a9ea2722b2e0cc863ce116619dacf8bb36.tar.gz nextcloud-server-563df2a9ea2722b2e0cc863ce116619dacf8bb36.zip |
Fix IE rule for min width
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
-rw-r--r-- | core/css/ie.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/ie.scss b/core/css/ie.scss index f1a617f0975..2a776dc9a86 100644 --- a/core/css/ie.scss +++ b/core/css/ie.scss @@ -3,7 +3,7 @@ position: fixed !important; } #app-content { - width: $navigation-width !important; + min-width: $navigation-width !important; /** * set min height so the container will grow in IE11 * https://stackoverflow.com/questions/28627879/flexbox-not-filling-height-in-ie11 |