[Glitch] Fix opacity of relationship tags

Port 58667072d9 to glitch-soc
pull/974/head
ThibG 2019-03-28 18:33:26 +01:00
parent 0318b23395
commit f4b038f779
1 changed files with 6 additions and 2 deletions

View File

@ -314,15 +314,19 @@
.relationship-tag { .relationship-tag {
color: $primary-text-color; color: $primary-text-color;
margin-bottom: 4px; margin-bottom: 4px;
opacity: 0.7;
display: block; display: block;
vertical-align: top; vertical-align: top;
background-color: rgba($base-overlay-background, 0.4); background-color: $base-overlay-background;
text-transform: uppercase; text-transform: uppercase;
font-size: 11px; font-size: 11px;
font-weight: 500; font-weight: 500;
padding: 4px; padding: 4px;
border-radius: 4px; border-radius: 4px;
opacity: 0.7;
&:hover {
opacity: 1;
}
} }
.account-gallery__container { .account-gallery__container {