aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/TemplateMenu.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
committerbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
commit515707c4561eb526426b8fa07dd50bd499fb91cc (patch)
treef4cbc69387da19add6dbc88acecbcdbdca575039 /src/client/views/TemplateMenu.scss
parent30b07ed24fbe5e6d49741bc63031807408cd4a0c (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/TemplateMenu.scss')
-rw-r--r--src/client/views/TemplateMenu.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/TemplateMenu.scss b/src/client/views/TemplateMenu.scss
index 36a9ce6d0..8879fc20d 100644
--- a/src/client/views/TemplateMenu.scss
+++ b/src/client/views/TemplateMenu.scss
@@ -1,4 +1,4 @@
-@import 'global/globalCssVariables.module.scss';
+@use 'global/globalCssVariables.module.scss' as global;
.templating-menu {
position: absolute;
pointer-events: auto;
@@ -24,15 +24,15 @@
cursor: pointer;
&:hover {
- background: $medium-gray;
+ background: global.$medium-gray;
transform: scale(1.05);
}
}
.template-list {
- font-family: $sans-serif;
+ font-family: global.$sans-serif;
font-size: 12px;
- background-color: $light-gray;
+ background-color: global.$light-gray;
padding: 2px 12px;
list-style: none;
position: relative;