Skip to content

Commit 9d86a47

Browse files
committed
refactor(frontend): fix line length
1 parent afaf543 commit 9d86a47

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/src/components/Footer.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ const Footer: React.FC<IFooter> = ({ footerData }) => {
1717
return (
1818
<div>
1919
<div className={
20-
"bg-gradient-to-b from-secondary-blue to-[27.74%] to-primary-purple py-16"
20+
clsx([
21+
"bg-gradient-to-b from-secondary-blue to-[27.74%] to-primary-purple",
22+
"py-16"
23+
])
2124
}>
2225
<div className="flex flex-col gap-12 px-6">
2326
{sections.map(({ title, links }) => (

0 commit comments

Comments
 (0)