Skip to content

Commit e8ce9da

Browse files
committed
feat: reorder in footer
1 parent f34b3e5 commit e8ce9da

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

src/theme/Footer/CustomFooter/customFooter.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
margin-top: 10px;
3232
}
3333

34-
/* Horizontal links below logo */
34+
/* Horizontal links below social icons */
3535
.horizontalLinks {
3636
display: flex;
3737
flex-wrap: wrap;
3838
justify-content: center;
3939
align-items: center;
4040
gap: 8px;
41-
margin: 8px 0;
41+
margin: 5px 0;
4242
}
4343

4444
.horizLink {
@@ -144,7 +144,7 @@
144144
}
145145

146146
.footerColumn:last-child {
147-
padding-right: 0; /* No padding needed on last column */
147+
padding-right: 0;
148148
}
149149

150150
.horizontalLinks {

src/theme/Footer/CustomFooter/customFooter.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,15 @@ export default function CustomFooter({
2828
<footer className={classes.footerRoot}>
2929
<div className={clsx(classes.footerContainer, "container")}>
3030
<div className={classes.brandSection}>
31+
{/* Logo first */}
3132
<div className={classes.logoWrapper}>{logo}</div>
33+
34+
{/* Tagline text would typically be part of the logo component */}
35+
36+
{/* Social icons */}
3237
<SocialLinks />
3338

39+
{/* Navigation links */}
3440
{flareLinks && (
3541
<div className={classes.horizontalLinks}>
3642
{flareLinks.items.map(({ label, to, href }, index) => (
@@ -49,6 +55,7 @@ export default function CustomFooter({
4955
</div>
5056
)}
5157

58+
{/* Copyright at the bottom */}
5259
<div className={classes.copyrightWrapper}>{copyright}</div>
5360
</div>
5461

0 commit comments

Comments
 (0)