style: standardize quotes in CSS and improve formatting for range input styles
Some checks failed
Frontend CI / lint (push) Failing after 5m7s
Frontend CI / build (push) Has been skipped

This commit is contained in:
JSC
2025-07-13 00:50:47 +02:00
parent 792442e3cf
commit 205b745d00

View File

@@ -1,5 +1,5 @@
@import "tailwindcss"; @import 'tailwindcss';
@import "tw-animate-css"; @import 'tw-animate-css';
@custom-variant dark (&:is(.dark *)); @custom-variant dark (&:is(.dark *));
@@ -121,26 +121,26 @@
@layer components { @layer components {
/* Custom slider styles for volume control */ /* Custom slider styles for volume control */
input[type="range"] { input[type='range'] {
-webkit-appearance: none; -webkit-appearance: none;
background: transparent; background: transparent;
} }
input[type="range"]::-webkit-slider-track { input[type='range']::-webkit-slider-track {
@apply h-1 bg-muted rounded-lg; @apply h-1 bg-muted rounded-lg;
} }
input[type="range"]::-webkit-slider-thumb { input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none; -webkit-appearance: none;
@apply h-4 w-4 bg-primary rounded-full cursor-pointer; @apply h-4 w-4 bg-primary rounded-full cursor-pointer;
margin-top: -6px; margin-top: -6px;
} }
input[type="range"]::-moz-range-track { input[type='range']::-moz-range-track {
@apply h-1 bg-muted rounded-lg border-0; @apply h-1 bg-muted rounded-lg border-0;
} }
input[type="range"]::-moz-range-thumb { input[type='range']::-moz-range-thumb {
@apply h-4 w-4 bg-primary rounded-full cursor-pointer border-0; @apply h-4 w-4 bg-primary rounded-full cursor-pointer border-0;
} }