fix: startpage background is now white by default and jsf block is back to original design

This commit is contained in:
Christian Andolf
2025-02-06 14:59:16 +01:00
parent 4d63cc57c5
commit 053ce3f4de
3 changed files with 6 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
.container { .container {
border-radius: var(--Corner-radius-Large); border-radius: var(--Corner-radius-Large);
background-color: var(--Main-Brand-WarmWhite); background-color: var(--Main-Brand-WarmWhite);
background-color: white;
padding: 0 var(--Spacing-x2); padding: 0 var(--Spacing-x2);
display: flex; display: flex;
gap: var(--Spacing-x5); gap: var(--Spacing-x5);

View File

@@ -21,7 +21,7 @@ export default async function StartPage() {
const { header, blocks } = content.startPage const { header, blocks } = content.startPage
return ( return (
<> <div className={styles.background}>
<header className={styles.header}> <header className={styles.header}>
<div className={styles.headerContent}> <div className={styles.headerContent}>
<Title color="white" textAlign="center"> <Title color="white" textAlign="center">
@@ -65,6 +65,6 @@ export default async function StartPage() {
<Suspense fallback={null}> <Suspense fallback={null}>
<TrackingSDK pageData={content.tracking} /> <TrackingSDK pageData={content.tracking} />
</Suspense> </Suspense>
</> </div>
) )
} }

View File

@@ -1,3 +1,7 @@
.background {
background-color: var(--Base-Surface-Primary-light-Normal);
}
.header { .header {
height: 560px; height: 560px;
position: relative; position: relative;