aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search/CheckBox.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-11 17:04:49 -0500
committerbobzel <zzzman@gmail.com>2023-12-11 17:04:49 -0500
commit07c30aed69dfa810ddb0b861ae2dc8e8f3a27356 (patch)
tree678a0855b169eb88fdc574fd49481ee6e57b12de /src/client/views/search/CheckBox.scss
parent936aa21fb576472e321a9af976d5da7b75292511 (diff)
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/search/CheckBox.scss')
-rw-r--r--src/client/views/search/CheckBox.scss7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/client/views/search/CheckBox.scss b/src/client/views/search/CheckBox.scss
index 2a0085ade..4892facbc 100644
--- a/src/client/views/search/CheckBox.scss
+++ b/src/client/views/search/CheckBox.scss
@@ -1,4 +1,4 @@
-@import "../global/globalCssVariables";
+@import '../global/globalCssVariables.module.scss';
.checkboxfilter {
display: flex;
@@ -12,7 +12,7 @@
align-items: center;
margin-top: 0px;
- .check-container:hover~.check-box {
+ .check-container:hover ~ .check-box {
background-color: $medium-blue;
}
@@ -55,5 +55,4 @@
text-transform: capitalize;
margin-left: 15px;
}
-
-} \ No newline at end of file
+}