Replaces custom `markdown.css` with the default prose styling from Nuxt UI to simplify the styling architecture. This commit also includes several other fixes and improvements: - fix(members): Correctly handle empty `graduateYear` strings in the member list. - fix(layout): Wrap `NuxtPage` in a div to resolve page transition issues. - feat(seo): Add a meta title to the homepage. - docs(content): Correct the title and add an image to an event page.
10 lines
146 B
CSS
10 lines
146 B
CSS
/* @import "./markdown.css"; */
|
|
|
|
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
@theme {
|
|
--color-primary: #fb9e3a;
|
|
--color-secondary: #fcef91;
|
|
}
|