aboutsummaryrefslogtreecommitdiff
path: root/static/css/input.css
blob: 31a04dc744c30c80e1657352cef045ea546967a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@tailwind base;
@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: "Lato", 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 */
}