aboutsummaryrefslogtreecommitdiff
path: root/static/css/input.css
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-08-25 01:47:12 -0400
committerBobby <[email protected]>2024-08-25 01:47:12 -0400
commitafbc59377fd5ea71630181bd1fbd9b4a21634032 (patch)
treea72daf2e4400b5d57b9fec403efa9f2822d1ea8b /static/css/input.css
parent9892c53d8f20d519e5a5bb818bd6b28c8bb0c4a1 (diff)
downloadyugen-afbc59377fd5ea71630181bd1fbd9b4a21634032.tar.xz
yugen-afbc59377fd5ea71630181bd1fbd9b4a21634032.zip
added swiper
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 */
+}