From eabfd999a8a527d771d8914e3d148ce0ca0f9b1d Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 23 Jun 2023 11:55:22 -0700 Subject: [PATCH] Fix some global styles --- styles/globals.scss | 50 ++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/styles/globals.scss b/styles/globals.scss index b868d270..23fe54e9 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -160,21 +160,6 @@ select { 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 { 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 { 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 { display: flex; 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; + } +}