2023-06-13 17:51:00 +08:00
|
|
|
@import "tailwind/inputs";
|
2023-06-14 20:40:26 +08:00
|
|
|
@import "tailwind/buttons";
|
2023-08-17 19:55:17 +08:00
|
|
|
@import "tailwind/modals";
|
2023-08-28 19:10:02 +08:00
|
|
|
@import "tailwind/flyouts";
|
2024-07-25 20:06:26 +08:00
|
|
|
@import "tailwind/radio";
|
2023-09-22 22:08:43 +08:00
|
|
|
@import "tailwind/loader.css";
|
2023-06-13 17:51:00 +08:00
|
|
|
|
2023-04-04 17:25:58 +08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2023-07-21 16:35:14 +08:00
|
|
|
.tw-hidden {
|
|
|
|
@apply hidden
|
|
|
|
}
|
2023-04-04 17:25:58 +08:00
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2023-06-06 20:38:54 +08:00
|
|
|
|
|
|
|
.border {
|
|
|
|
border-style: solid;
|
|
|
|
border-color: theme('borderColor.DEFAULT', currentColor);
|
|
|
|
}
|
2023-06-07 20:00:34 +08:00
|
|
|
|
|
|
|
.scroll-container .ps__rail-y{
|
|
|
|
background-color: var(--sn-white);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2024-02-02 16:57:08 +08:00
|
|
|
.scroll-container.ps-transparent .ps__rail-y{
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
&::after,
|
|
|
|
&::before {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-07 20:00:34 +08:00
|
|
|
.scroll-container .ps__thumb-y{
|
|
|
|
background-color: var(--sn-grey);
|
|
|
|
opacity: 1;
|
|
|
|
right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-container .ps__rail-x{
|
|
|
|
background-color: var(--sn-white);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-container .ps__thumb-x{
|
|
|
|
background-color: var(--sn-grey);
|
|
|
|
opacity: 1;
|
|
|
|
bottom: 5px;
|
|
|
|
}
|
2024-03-13 21:35:05 +08:00
|
|
|
|
|
|
|
/* Hide caret in Safari */
|
|
|
|
#relationships-section summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-03-14 21:39:44 +08:00
|
|
|
|
2024-03-15 03:08:56 +08:00
|
|
|
.ag-theme-alpine {
|
|
|
|
--ag-font-family: "SN Inter", "Open Sans", Arial, Helvetica, sans-serif !important;
|
|
|
|
}
|
2024-04-08 02:36:02 +08:00
|
|
|
|
|
|
|
.animate-skeleton {
|
|
|
|
background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
|
|
|
|
background-size: 500px;
|
|
|
|
animation: shine-lines 1.6s infinite linear
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shine-lines {
|
|
|
|
0% { background-position: -150px }
|
2024-07-25 20:06:26 +08:00
|
|
|
|
2024-04-08 02:36:02 +08:00
|
|
|
40%, 100% { background-position: 320px }
|
|
|
|
}
|