From 205b745d003b8e0858a1ae7499216bed61434394 Mon Sep 17 00:00:00 2001 From: JSC Date: Sun, 13 Jul 2025 00:50:47 +0200 Subject: [PATCH] style: standardize quotes in CSS and improve formatting for range input styles --- src/index.css | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/index.css b/src/index.css index 523d5d4..93fc86c 100644 --- a/src/index.css +++ b/src/index.css @@ -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; } -} \ No newline at end of file +}