Skip to content

Commit c6dd393

Browse files
committed
fix: when banner layout breaks
1 parent dd3d433 commit c6dd393

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/withNavBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const WithNavBar: FC = () => {
2222
setTheme(resolvedTheme === 'dark' ? 'light' : 'dark');
2323

2424
return (
25-
<>
25+
<div>
2626
<WithBanner section="index" />
2727

2828
<NavBar
@@ -37,7 +37,7 @@ const WithNavBar: FC = () => {
3737
text: label,
3838
}))}
3939
/>
40-
</>
40+
</div>
4141
);
4242
};
4343

styles/new/effects.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ h1.special {
1414
div.glowingBackdrop {
1515
@apply absolute
1616
left-0
17+
top-0
1718
-z-10
1819
size-full
1920
bg-[url('/static/images/patterns/hexagon-grid.svg')]

0 commit comments

Comments
 (0)