Skip to content

Commit 12dd415

Browse files
committed
fix: home section background css
Resolve #31
1 parent 2a5296a commit 12dd415

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

app/[lang]/(home)/Hero/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function Hero({t, statsInfo}: Props): ReactElement {
9696
return (
9797
<div
9898
className={clsx(
99-
'self-stretch bg-cover',
99+
'self-stretch bg-paper',
100100
'flex flex-col justify-center items-center',
101101
'max-[425px]:p-0',
102102
)}

app/[lang]/(home)/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function Home({t, statsInfo}: Props): ReactElement {
2626
initAmplitude();
2727

2828
return (
29-
<div className={clsx('flex-1 w-screen bg-paper', 'flex flex-col')}>
29+
<div className={clsx('flex-1 w-screen', 'flex flex-col')}>
3030
<Hero t={t} statsInfo={statsInfo} />
3131
<SectionHowItWorks t={t} />
3232
<SectionFooter t={t} />

styles/output.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1711,6 +1711,11 @@ input[type='search']::-webkit-search-decoration,
17111711
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
17121712
}
17131713

1714+
.bg-red1 {
1715+
--tw-bg-opacity: 1;
1716+
background-color: rgb(255 44 44 / var(--tw-bg-opacity));
1717+
}
1718+
17141719
.bg-cover {
17151720
background-size: cover;
17161721
}

0 commit comments

Comments
 (0)