aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/Header/LightboxHeader.scss
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-03-11 17:43:05 +0100
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-03-11 17:43:05 +0100
commitfa937182bc93aa2c6faadda80ea998cdfd479b4e (patch)
treecba8e16edcccc6fd2932173484ac444cb79abea2 /src/client/views/newlightbox/Header/LightboxHeader.scss
parentcf91c46cfec6e3e36b9184764016f9c1b5c997d4 (diff)
parent04669ffeb163688c7aefd7b5face7998252abdca (diff)
Merge branch 'master' of https://github.com/brown-dash/Dash-Web into DocCreatorMenu-work
Diffstat (limited to 'src/client/views/newlightbox/Header/LightboxHeader.scss')
-rw-r--r--src/client/views/newlightbox/Header/LightboxHeader.scss28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/client/views/newlightbox/Header/LightboxHeader.scss b/src/client/views/newlightbox/Header/LightboxHeader.scss
index a9e60ea98..5b316890d 100644
--- a/src/client/views/newlightbox/Header/LightboxHeader.scss
+++ b/src/client/views/newlightbox/Header/LightboxHeader.scss
@@ -1,9 +1,9 @@
-@import '../NewLightboxStyles.scss';
+@use '../NewLightboxStyles.scss' as newstyles;
.newLightboxHeader-container {
width: 100%;
height: 100%;
- background: $gray-l1;
+ background: newstyles.$gray-l1;
border-radius: 20px 20px 0px 0px;
padding: 20px;
display: grid;
@@ -29,13 +29,13 @@
grid-row: 2;
.type {
padding: 2px 7px !important;
- background: $gray-l2;
+ background: newstyles.$gray-l2;
}
}
.lb-label {
- color: $gray-l3;
- font-weight: $h1-weight;
+ color: newstyles.$gray-l3;
+ font-weight: newstyles.$h1-weight;
}
.lb-button {
@@ -47,25 +47,25 @@
justify-content: space-evenly;
align-items: center;
transition: 0.2s ease;
- gap: 5px;
- font-size: $body-size;
+ gap: 5px;
+ font-size: newstyles.$body-size;
height: fit-content;
&:hover {
- background: $gray-l2;
+ background: newstyles.$gray-l2;
}
&.true {
- background: $blue-l1;
+ background: newstyles.$blue-l1;
}
}
-
+
&.dark {
- background: $black;
+ background: newstyles.$black;
}
-
+
&.light,
&.default {
- background: $white;
+ background: newstyles.$white;
}
-} \ No newline at end of file
+}