diff options
author | Thomas Lange <code@nerdmind.de> | 2021-08-10 15:57:26 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-08-10 16:01:52 +0200 |
commit | 49f03ac48efcce79822bed1ec40ad48bf5c6e450 (patch) | |
tree | 5f54909bf4378d62e1287a99787a1efe82626e4f /theme | |
parent | 4dee76debb3857f69be701710f3aac2d7feb799c (diff) | |
download | blog-49f03ac48efcce79822bed1ec40ad48bf5c6e450.tar.gz blog-49f03ac48efcce79822bed1ec40ad48bf5c6e450.tar.xz blog-49f03ac48efcce79822bed1ec40ad48bf5c6e450.zip |
Clear floating for #message-list-wrapper
Diffstat (limited to 'theme')
-rw-r--r-- | theme/admin/rsrc/css/bright.css | 1 | ||||
-rw-r--r-- | theme/admin/rsrc/css/dark.css | 1 | ||||
-rw-r--r-- | theme/admin/rsrc/css/import/_styles.scss | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/theme/admin/rsrc/css/bright.css b/theme/admin/rsrc/css/bright.css index bf21d90..df7027a 100644 --- a/theme/admin/rsrc/css/bright.css +++ b/theme/admin/rsrc/css/bright.css @@ -680,6 +680,7 @@ label:after { font-size: 0.6rem; } #message-list-wrapper { + clear: both; margin-bottom: 0.5rem; border: 0.1rem solid #ae3f4a; } diff --git a/theme/admin/rsrc/css/dark.css b/theme/admin/rsrc/css/dark.css index fb7e356..a69bfc5 100644 --- a/theme/admin/rsrc/css/dark.css +++ b/theme/admin/rsrc/css/dark.css @@ -680,6 +680,7 @@ label:after { font-size: 0.6rem; } #message-list-wrapper { + clear: both; margin-bottom: 0.5rem; border: 0.1rem solid #6a3238; } diff --git a/theme/admin/rsrc/css/import/_styles.scss b/theme/admin/rsrc/css/import/_styles.scss index f216d8f..87614a8 100644 --- a/theme/admin/rsrc/css/import/_styles.scss +++ b/theme/admin/rsrc/css/import/_styles.scss @@ -723,6 +723,7 @@ label { font-size: $fontSizeSmall; &-wrapper { + clear: both; margin-bottom: 0.5rem; border: 0.1rem solid darken($messageListBackgroundColor, 10%); } |