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

@ -5,7 +5,7 @@ const AnmeldeformularPreview = ({ widgetFor, entry }) => {
PageHeader(entry),
h(
"section",
{ className: "section-sm bg-gray" },
{ className: "section-sm bg-body-tertiary" },
h(
"div",
{ className: "container" },

View File

@ -34,13 +34,13 @@ const BlogPreview = ({ widgetFor, entry, fields, collection }) => {
{ className: "row mb-3" },
h(
"div",
{ className: "col-6 mb-md-0 text-light" },
{ className: "col-6 mb-md-0 text-body-tertiary" },
h("span", { className: "fw-bold me-1" }, "Geschrieben von:"),
widgetFor("author")
),
h(
"div",
{ className: "col-6 mb-3 mb-md-0 text-light" },
{ className: "col-6 mb-3 mb-md-0 text-body-tertiary" },
h("span", { className: "fw-bold me-1" }, "Datum:"),
entry.data.date
? DateFormat({
@ -58,7 +58,7 @@ const BlogPreview = ({ widgetFor, entry, fields, collection }) => {
Row(
h(
"div",
{ className: "col-12 mb-md-0 text-light" },
{ className: "col-12 mb-md-0 text-body-tertiary" },
h("span", { className: "fw-bold me-1" }, "Kategorie:"),
entry.data.categories
? entry.data.categories.map(

View File

@ -37,7 +37,7 @@ const CantorpreisPreview = ({ widgetFor, entry, fields, collection }) => {
"div",
{ className: "col-md-7 mb-5" },
h("h3", {}, entry.data.name),
h("h6", { className: "text-color" }, entry.data.title),
h("h6", { className: "text-body-secondary" }, entry.data.title),
Content(widgetFor("body"))
),
])

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)
)
)
)

View File

@ -5,7 +5,7 @@ const KontaktPreview = ({ widgetsFor, entry }) => {
PageHeader(entry),
h(
"section",
{ className: "section-sm bg-gray" },
{ className: "section-sm bg-body-tertiary" },
h(
"div",
{ className: "container" },