diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-24 19:18:08 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-24 19:18:08 +0100 |
commit | ef0f91ef0ce501206000fcb014ce6f1892942092 (patch) | |
tree | fe8707f61d2caabf2c8a4a54f6f5798f9e433a52 /settings | |
parent | a05219d24d41f103f68cd38d35d2b9e75b810259 (diff) | |
download | nextcloud-server-ef0f91ef0ce501206000fcb014ce6f1892942092.tar.gz nextcloud-server-ef0f91ef0ce501206000fcb014ce6f1892942092.zip |
Fix settings section divider being very visible below navigation bar
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/css/settings.scss b/settings/css/settings.scss index c89c6d47bb5..f833913b7d6 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -941,9 +941,9 @@ span.version { .section { margin-bottom: 0; - /* use 2nd child since app-navigation-toggle is the first */ - &:not(:nth-child(2)) { - border-top: 1px solid var(--color-border); + /* section divider lines, none needed for last one */ + &:not(:last-child) { + border-bottom: 1px solid var(--color-border); } /* correctly display help icons next to headings */ |