aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/AudioBox.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/nodes/AudioBox.scss
parent936aa21fb576472e321a9af976d5da7b75292511 (diff)
fixed includes of scss globals into typescript files.
Diffstat (limited to 'src/client/views/nodes/AudioBox.scss')
-rw-r--r--src/client/views/nodes/AudioBox.scss10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/nodes/AudioBox.scss b/src/client/views/nodes/AudioBox.scss
index d40537776..4337401e3 100644
--- a/src/client/views/nodes/AudioBox.scss
+++ b/src/client/views/nodes/AudioBox.scss
@@ -1,4 +1,4 @@
-@import "../global/globalCssVariables.scss";
+@import '../global/globalCssVariables.module.scss';
.audiobox-container {
width: 100%;
@@ -116,18 +116,18 @@
width: 10px;
}
- input[type="range"] {
+ input[type='range'] {
width: 50px;
-webkit-appearance: none;
background: none;
margin: 5px;
}
- input[type="range"]:focus {
+ input[type='range']:focus {
outline: none;
}
- input[type="range"]::-webkit-slider-runnable-track {
+ input[type='range']::-webkit-slider-runnable-track {
width: 100%;
height: 6px;
cursor: pointer;
@@ -136,7 +136,7 @@
border-radius: 3px;
}
- input[type="range"]::-webkit-slider-thumb {
+ input[type='range']::-webkit-slider-thumb {
box-shadow: 0;
border: 0;
height: 10px;