59 lines
811 B
CSS
59 lines
811 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
font-family: "Inter", sans-serif;
|
|
color: #111c26;
|
|
}
|
|
|
|
/* Scrollbar */
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #858585;
|
|
border: 3.5px solid #f2f2f2;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
border-width: 2px;
|
|
}
|
|
|
|
/* Transition */
|
|
|
|
.entering {
|
|
opacity: 1;
|
|
}
|
|
|
|
.entered {
|
|
opacity: 1;
|
|
}
|
|
|
|
.exiting {
|
|
opacity: 0;
|
|
}
|
|
|
|
.exited {
|
|
opacity: 0;
|
|
}
|
|
|
|
/* DatePicker */
|
|
|
|
.react-datepicker {
|
|
font-family: inherit !important;
|
|
}
|
|
|
|
.react-datepicker__day--selected {
|
|
background-color: #49a1f5 !important;
|
|
}
|
|
|
|
.react-datepicker__day--selected:hover {
|
|
background-color: #4190db !important;
|
|
}
|