2023-04-24 15:12:08 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2023-04-25 13:45:33 +00:00
|
|
|
|
|
|
|
@layer base {
|
|
|
|
:root {
|
|
|
|
--text-main: #333;
|
|
|
|
--text-secondary: #4b525d;
|
|
|
|
--bg-active: #fbfbfc;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.dark {
|
|
|
|
--text-main: #f7f7f7;
|
|
|
|
--text-secondary: #6f6e84;
|
|
|
|
--bg-active: #242b40;
|
|
|
|
}
|
|
|
|
}
|
2023-05-11 17:05:40 +00:00
|
|
|
|
|
|
|
.collapse-title,
|
|
|
|
:where(.collapse > input[type='checkbox']) {
|
|
|
|
padding: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
min-height: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse-open :where(.collapse-content),
|
|
|
|
.collapse:focus:not(.collapse-close) :where(.collapse-content),
|
|
|
|
.collapse:not(.collapse-close)
|
|
|
|
:where(input[type='checkbox']:checked ~ .collapse-content) {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2023-05-15 01:36:48 +00:00
|
|
|
|
|
|
|
.table th:first-child {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|