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-13 13:51:04 +0100 |
commit | ae9f96f2c5d4710aca356df467984c6411a40a0f (patch) | |
tree | 6da070b8fba53444407b65f6ebea031482c1b8f4 | |
parent | 655b7f047cf88e731360932b13d7a08ff5933d84 (diff) | |
download | nextcloud-server-ae9f96f2c5d4710aca356df467984c6411a40a0f.tar.gz nextcloud-server-ae9f96f2c5d4710aca356df467984c6411a40a0f.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 |