From afbc59377fd5ea71630181bd1fbd9b4a21634032 Mon Sep 17 00:00:00 2001 From: Bobby Date: Sun, 25 Aug 2024 01:47:12 -0400 Subject: added swiper --- static/css/input.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'static/css/input.css') diff --git a/static/css/input.css b/static/css/input.css index c6c1859..796cb34 100644 --- a/static/css/input.css +++ b/static/css/input.css @@ -2,6 +2,33 @@ @tailwind components; @tailwind utilities; +@layer utilities { + /* Hide scrollbar for Chrome, Safari and Opera */ + .no-scrollbar::-webkit-scrollbar { + display: none; + } + /* Hide scrollbar for IE, Edge and Firefox */ + .no-scrollbar { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ + } +} + * { font-family: "Tsukimi Rounded", sans-serif; } + +/* Style for the active pagination bullet */ +.swiper-pagination-bullet-active { + background-color: white !important; /* Make active bullet white */ +} + +/* Optional: Style for inactive pagination bullets */ +.swiper-pagination-bullet { + background-color: rgba( + 255, + 255, + 255, + 0.5 + ); /* Light gray for inactive bullets */ +} -- cgit v1.2.3