
Error: error building site: TAILWINDCSS: failed to transform "/css/main.css" (text/css): (node:69032) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension. (Use `node --trace-warnings ...` to show where the warning was created) Error: Cannot apply unknown utility class: dark:fill-dark
55 lines
1.1 KiB
CSS
55 lines
1.1 KiB
CSS
/* table of contents */
|
|
.table-of-content {
|
|
@apply overflow-hidden rounded;
|
|
}
|
|
|
|
/* share icons */
|
|
.share-icons .share-link {
|
|
@apply h-9 w-9 rounded leading-9 bg-primary hover:bg-primary dark:bg-darkmode-primary dark:hover:bg-darkmode-primary;
|
|
}
|
|
|
|
.share-icons .share-icon svg {
|
|
@apply dark:fill-current;
|
|
}
|
|
|
|
/* notice */
|
|
.notice {
|
|
@apply rounded-lg;
|
|
}
|
|
|
|
/* tab */
|
|
.tab {
|
|
@apply border-border dark:border-darkmode-border overflow-hidden rounded-lg border;
|
|
}
|
|
.tab-nav {
|
|
@apply border-border bg-light dark:border-darkmode-border dark:bg-darkmode-light pl-4;
|
|
}
|
|
.tab-nav-item {
|
|
@apply text-text-dark dark:text-darkmode-text-dark px-8 !text-lg;
|
|
}
|
|
.tab-nav-item.active {
|
|
@apply border-dark dark:border-darkmode-primary;
|
|
}
|
|
|
|
.tab-content-panel {
|
|
@apply px-4 !pt-0;
|
|
}
|
|
|
|
/* accordion */
|
|
.accordion {
|
|
@apply border-border bg-light dark:border-darkmode-border dark:bg-darkmode-light mb-6 overflow-hidden rounded-lg border;
|
|
}
|
|
.accordion-header {
|
|
@apply text-text-dark dark:text-darkmode-text-dark;
|
|
}
|
|
|
|
/* cookie consent */
|
|
.cookie-box {
|
|
@apply !rounded-lg;
|
|
}
|
|
|
|
/* slider */
|
|
.gallery-slider {
|
|
@apply !ml-0;
|
|
}
|