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 "tw-animate-css";
@import 'tailwindcss';
@import 'tw-animate-css';
@custom-variant dark (&:is(.dark *));
@@ -121,29 +121,29 @@
@layer components {
/* Custom slider styles for volume control */
input[type="range"] {
input[type='range'] {
-webkit-appearance: none;
background: transparent;
}
input[type="range"]::-webkit-slider-track {
input[type='range']::-webkit-slider-track {
@apply h-1 bg-muted rounded-lg;
}
input[type="range"]::-webkit-slider-thumb {
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
@apply h-4 w-4 bg-primary rounded-full cursor-pointer;
margin-top: -6px;
}
input[type="range"]::-moz-range-track {
input[type='range']::-moz-range-track {
@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;
}
/* Line clamp utilities */
.line-clamp-1 {
display: -webkit-box;
@@ -151,4 +151,4 @@
-webkit-box-orient: vertical;
overflow: hidden;
}
}
}