From 5f4a1a6c000a825652b30f080bfdca53af511745 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Mon, 22 Sep 2025 22:49:33 +0400 Subject: [PATCH] Furbooru: Use margin for tag category titles used for Derpibooru --- src/styles/content/tags-editor.scss | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/styles/content/tags-editor.scss b/src/styles/content/tags-editor.scss index 07a79a9..c371073 100644 --- a/src/styles/content/tags-editor.scss +++ b/src/styles/content/tags-editor.scss @@ -6,18 +6,8 @@ h2.tag-category-headline { $base-margin-top: .83em; $base-margin-bottom: .62em; - // Tag List element was updated to use flex & gaps. This should be applied to Furbooru later, once updates will be - // applied from the base Philomena version. - @if environment.$current-site == 'derpibooru' { - margin: { - top: calc(#{$base-margin-top} - #{booru-vars.$padding-small}); - bottom: calc(#{$base-margin-bottom} - #{booru-vars.$padding-small}); - } - } - @else { - margin: { - top: $base-margin-top; - bottom: $base-margin-bottom; - } + margin: { + top: calc(#{$base-margin-top} - #{booru-vars.$padding-small}); + bottom: calc(#{$base-margin-bottom} - #{booru-vars.$padding-small}); } }