From 510408837b7e5a0623b1053866064edb8fec077d Mon Sep 17 00:00:00 2001 From: Vrifox Date: Tue, 20 Oct 2020 19:37:44 +0200 Subject: [PATCH] fixes #7; fixes #8 --- scss/import/explore.scss | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/scss/import/explore.scss b/scss/import/explore.scss index a0e0ac3..81eac69 100644 --- a/scss/import/explore.scss +++ b/scss/import/explore.scss @@ -16,6 +16,11 @@ color: $white-light; } } + svg { + @if $nojavascript == true { + display: none; + } + } .label { background: $bg60; } @@ -49,9 +54,11 @@ } } .divider { - border-bottom: 1px solid $bg60; + border-bottom: 1px solid $bg60 !important; + border-top: 0 !important; } - .repository.list { + .repository.list, + .user.list { .item { &:not(:first-child) { border-top: 1px solid $bg60; @@ -63,6 +70,9 @@ } } .metas { + @if $singleuser == true { + display: none; + } span { color: $white-dark !important; } @@ -102,6 +112,11 @@ } .description { color: $white; + svg { + @if $nojavascript == true { + display: none; + } + } } } }