diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-08-03 14:05:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-03 14:05:28 +0200 |
commit | 755f13ee9f8543654a7e2a65b0d7f38378406c4a (patch) | |
tree | 59a72c1461ceb74b595db33a2104bb840bff3bcd /core/css/apps.scss | |
parent | af6f93b0250e79f6936950cf821f03e58a28b330 (diff) | |
parent | 49189190b916175675895a94ded36ff93e2c7083 (diff) | |
download | nextcloud-server-755f13ee9f8543654a7e2a65b0d7f38378406c4a.tar.gz nextcloud-server-755f13ee9f8543654a7e2a65b0d7f38378406c4a.zip |
Merge pull request #10519 from nextcloud/min-height-wrapper
Min height 100% on content-wrapper
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 2d43ab3f76c..029301c326f 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -614,6 +614,9 @@ kbd { display: flex; position: relative; align-items: stretch; + /* make sure we have at least full height for loaders or such + no need for list/details since we have a flex stretch */ + min-height: 100%; /* CONTENT DETAILS AFTER LIST*/ .app-content-details { |