Fix some global styles

This commit is contained in:
Justin Edmund 2023-06-23 11:55:22 -07:00
parent 9ecba12421
commit eabfd999a8

View file

@ -160,21 +160,6 @@ select {
gap: $unit * 2; gap: $unit * 2;
} }
#NotFound {
height: 200px;
width: 400px;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
h2 {
color: $grey-60;
font-size: $font-regular;
text-align: center;
}
}
img.profile { img.profile {
background: $grey-90; background: $grey-90;
@ -207,16 +192,6 @@ select {
} }
} }
i.tag {
background: var(--tag-bg);
color: var(--tag-text);
border-radius: calc($unit / 2);
font-size: 10px;
font-weight: $bold;
padding: 4px 6px;
text-transform: uppercase;
}
.infinite-scroll-component { .infinite-scroll-component {
overflow: hidden !important; overflow: hidden !important;
} }
@ -281,6 +256,16 @@ select {
} }
} }
.MenuItem i.tag {
background: var(--tag-bg);
color: var(--tag-text);
border-radius: calc($unit / 2);
font-size: 10px;
font-weight: $bold;
padding: 4px 6px;
text-transform: uppercase;
}
.ServerUnavailableWrapper { .ServerUnavailableWrapper {
display: flex; display: flex;
align-items: center; align-items: center;
@ -407,3 +392,18 @@ select {
} }
} }
} }
#NotFound {
height: 200px;
width: 400px;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
h2 {
color: $grey-60;
font-size: $font-regular;
text-align: center;
}
}