aboutsummaryrefslogtreecommitdiff
path: root/static/css/input.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/input.css')
-rw-r--r--static/css/input.css27
1 files changed, 27 insertions, 0 deletions
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 */
+}