WIP: convert sass to css
All checks were successful
website-main / prod-build (push) Successful in 1m7s
website-main / test-build (push) Successful in 45s
website-main / auto-rebuild (push) Has been skipped

This commit is contained in:
2023-06-09 20:35:28 +02:00
parent edffb3a720
commit 96f6f10146
21 changed files with 145 additions and 171 deletions

View File

@ -26,7 +26,7 @@ const PageHeader = (entry) => {
{ className: "list-inline-item h2" },
h(
"font",
{ className: "text-primary font-secondary", href: "" },
{ className: "text-primary font-header", href: "" },
"Startseite"
)
),
@ -37,11 +37,11 @@ const PageHeader = (entry) => {
),
h(
"li",
{ className: "list-inline-item text-white h2 font-secondary" },
{ className: "list-inline-item text-white h2 font-header" },
entry.data.title
)
),
h("p", { className: "text-lighten" }, entry.data.description)
h("p", { className: "text-white text-opacity-75" }, entry.data.description)
)
)
)