This commit is contained in:
TheGiddyLimit
2024-03-10 21:53:34 +00:00
parent b323d4123e
commit f00d1f3833
272 changed files with 24017 additions and 9350 deletions

View File

@@ -1,4 +1,4 @@
@import "includes/vars";
@use "includes/vars";
.pg-search__ {
$sz-image: 48px;
@@ -8,9 +8,9 @@
}
&wrp-result {
border: 1px solid $rgb-border-grey;
border: 1px solid vars.$rgb-border-grey;
border-radius: 5px;
min-height: calc(#{$spacer} + #{$sz-image} + 2px);
min-height: calc(#{vars.$spacer} + #{$sz-image} + 2px);
}
&disp-token {
@@ -29,7 +29,7 @@
&wrp-preview {
width: 500px;
border: 1px solid $rgb-border-grey;
border: 1px solid vars.$rgb-border-grey;
}
&btn-toggle-preview {
@@ -37,7 +37,7 @@
border-top-left-radius: 0;
border-bottom-left-radius: 0;
@media only screen and (max-width: $width-screen-sm) {
@media only screen and (max-width: vars.$width-screen-sm) {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
@@ -48,12 +48,12 @@
.night-mode {
.pg-search__ {
&wrp-result {
border: 1px solid $rgb-border-grey--night;
background: $rgb-bg--night;
border: 1px solid vars.$rgb-border-grey--night;
background: vars.$rgb-bg--night;
}
&wrp-preview {
border: 1px solid $rgb-border-grey--night;
border: 1px solid vars.$rgb-border-grey--night;
}
}
}