2023-01-22 15:39:35 -06:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2023-02-18 21:32:02 -06:00
|
|
|
|
|
|
|
/* Hide scrollbar */
|
|
|
|
.hidw-scrollbar::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.hide-scrollbar {
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
2023-03-05 15:03:20 -06:00
|
|
|
|
|
|
|
::selection {
|
|
|
|
background-color: #0ea5e9;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hyphens {
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slide-up {
|
|
|
|
animation: slide-up-animation 70ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-in {
|
|
|
|
animation: fade-in-animation 100ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade-in-animation {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slide-up-animation {
|
|
|
|
0% {
|
2023-03-22 18:11:54 -05:00
|
|
|
transform: translateY(15%);
|
2023-03-05 15:03:20 -06:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|