diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-25 01:03:25 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-25 01:03:25 -0500 |
| commit | 515707c4561eb526426b8fa07dd50bd499fb91cc (patch) | |
| tree | f4cbc69387da19add6dbc88acecbcdbdca575039 /src/client/views/search | |
| parent | 30b07ed24fbe5e6d49741bc63031807408cd4a0c (diff) | |
added a hideUI option to hide buttons. fixed a mess of runtime warnings mostly related to how scss files can be included in each other
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchBox.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/search/SearchBox.scss b/src/client/views/search/SearchBox.scss index 94e64b952..030d56f0c 100644 --- a/src/client/views/search/SearchBox.scss +++ b/src/client/views/search/SearchBox.scss @@ -1,4 +1,4 @@ -@import '../global/globalCssVariables.module.scss'; +@use '../global/globalCssVariables.module.scss' as global; .searchBox-container { width: 100%; @@ -22,7 +22,7 @@ top: 0px; position: sticky; overflow-y: scroll; - border-bottom: $standard-border; + border-bottom: global.$standard-border; .searchBox-type { display: block; @@ -48,20 +48,20 @@ .section-header { .section-title { - font-size: $body-text; + font-size: global.$body-text; font-weight: 600; } .section-subtitle { display: flex; - color: $light-gray; + color: global.$light-gray; } padding: 5px 10px; display: flex; flex-direction: column; gap: 3px; - background: $medium-blue; + background: global.$medium-blue; color: white; } |
