aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/Main.scss
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-03-04 04:32:50 -0500
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-03-04 04:32:50 -0500
commit95abdada5a275fc258fa72781f7f3c40c0b306ea (patch)
tree6d729cebe0937ae81108005de9895b5398d1f475 /src/client/views/Main.scss
parent0a8f3739cf5c30852f18751a4c05d81e0dabe928 (diff)
parent215ad40efa2e343e290d18bffbc55884829f1a0d (diff)
Merge branch 'master' of https://github.com/brown-dash/Dash-Web into Merge
Diffstat (limited to 'src/client/views/Main.scss')
-rw-r--r--src/client/views/Main.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/views/Main.scss b/src/client/views/Main.scss
index 02916e48e..bea1de435 100644
--- a/src/client/views/Main.scss
+++ b/src/client/views/Main.scss
@@ -1,5 +1,5 @@
-@import 'global/globalCssVariables.module';
-@import 'nodeModuleOverrides';
+@use 'global/globalCssVariables.module' as global;
+// bcz: fix @import 'nodeModuleOverrides';
:root {
--flyoutHandleWidth: 28px;
@@ -10,8 +10,8 @@ body {
width: 100%;
height: 100%;
overflow: hidden;
- font-family: $sans-serif;
- font-size: $body-text;
+ font-family: global.$sans-serif;
+ font-size: global.$body-text;
margin: 0;
position: absolute;
top: 0;
@@ -54,7 +54,7 @@ button {
background: black;
outline: none;
border: 0px;
- color: $white;
+ color: global.$white;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 75%;
@@ -63,7 +63,7 @@ button {
}
button:hover {
- background: $medium-gray;
+ background: global.$medium-gray;
transform: scale(1.05);
cursor: pointer;
}