diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-12 23:45:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 23:45:17 +0100 |
commit | 795cc8345db60cc0663ba57a514cafde96bc5339 (patch) | |
tree | 2d51d473268c98edfbed787c41d70925cbb65fd0 | |
parent | 0c9e411f76dea1cc70b737b6201783a3c2e21d13 (diff) | |
parent | 563df2a9ea2722b2e0cc863ce116619dacf8bb36 (diff) | |
download | nextcloud-server-795cc8345db60cc0663ba57a514cafde96bc5339.tar.gz nextcloud-server-795cc8345db60cc0663ba57a514cafde96bc5339.zip |
Merge pull request #12359 from nextcloud/ie11-width-fix
Fix IE rule for min width
-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 |