1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Added color of the media box, fixing styling

This commit is contained in:
2024-03-31 16:23:04 +04:00
parent ec5316774f
commit d51beccd3b
2 changed files with 22 additions and 3 deletions

View File

@@ -19,9 +19,11 @@ $block-border: #332941;
$block-background: #1d1924;
$block-background-alternate: #16131b;
$media-box-border: #311e49;
$tag-background: #1b3c21;
$tag-count-background: #2d6236;
$tag-text: #4aa158;
$input-background: #26232d;
$input-border: #5c5a61;
$input-border: #5c5a61;

View File

@@ -1,3 +1,5 @@
@use '../colors';
.media-box {
position: relative;
overflow: initial !important;
@@ -10,8 +12,23 @@
left: -50%;
right: -50%;
z-index: 8;
background: #1d1924;
border: 1px solid #311e49;
background: colors.$footer;
border: 1px solid colors.$media-box-border;
.tags-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 6px;
.tag {
margin: 0;
}
}
.tag {
padding: 0 6px;
}
}
&:hover .maintenance-popup.is-active {