This commit introduces a draft system for the 'events' and 'news' collections. A `draft` boolean field has been added to the content schema, and frontend queries are now updated to only fetch and display content where `draft` is `false`. This allows content to be created and saved without being publicly visible, improving the publishing workflow.
13 lines
194 B
CSS
13 lines
194 B
CSS
/* @import "./markdown.css"; */
|
|
|
|
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
@theme {
|
|
--color-primary: #fb9e3a;
|
|
--color-secondary: #fcef91;
|
|
}
|
|
|
|
.dark {
|
|
--color-gray-800: oklch(85% 0 275);
|
|
} |