Skip to content

Commit c695232

Browse files
committed
slight face lift for bielefeld banner
1 parent 6e69f11 commit c695232

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

src/ui/screens/landing-page/sections/top-section/LandingPageTopSection.js

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,25 @@ const LandingPageTopSection = ({ runway }) => {
1717
return (
1818
<LandingPageSectionWrapper>
1919
{isDesktop ? (
20-
<HBox justifyContent="space-between" alignItems="center">
20+
<HBox justifyContent="space-between" alignItems="flex-start">
2121
<VBox sx={{ width: "50%", alignItems: "center" }}>
22-
<VBox sx={{ maxWidth: "600px", gap: 8 }}>
22+
<VBox sx={{ maxWidth: "600px", gap: 4 }}>
2323
<LandingPageTopSectionShared />
2424
{runway === "bielefunke" && featureFlags.bielefunke && (
25-
<>
25+
<VBox
26+
sx={(theme) => ({
27+
padding: 4,
28+
backgroundColor: `${theme.palette.white.dark}40`,
29+
borderRadius: theme.shape.borderRadius,
30+
})}
31+
>
2632
<Typography variant="h2">Willkommen beim Pilotprojekt Bielefeld!</Typography>
2733
<Typography variant="body1" sx={{ textAlign: 'left' }}>
2834
Gebt uns gerne Feedback: (dedicated email address?)
29-
<br/><br/>
35+
<br /><br />
3036
<Link to="/eligibility-overview?tags=ff%3Abielefunke">hier</Link> die Leistungen die wir im Rahmen des Pilotprojekts bis jetzt eingepflegt haben.
3137
</Typography>
32-
</>
38+
</VBox>
3339
)}
3440
<RegularButton variant={'yellowContained'} link='/user-routing' />
3541
</VBox>

0 commit comments

Comments
 (0)