1
0
mirror of https://github.com/koloml/philomena-tagging-assistant.git synced 2026-05-09 23:22:20 +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

@@ -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 {