Skip to content

Commit a63aad2

Browse files
committed
set list style none to the footer's lists
1 parent 613d5e9 commit a63aad2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
316316
<h3 className="my-5 text-sm font-bold">
317317
<Translation id={section.title} />
318318
</h3>
319-
<List className="m-0 mb-4 text-sm">
319+
<List className="m-0 mb-4 list-none text-sm">
320320
{section.links.map((link, linkIdx) => (
321321
<ListItem key={linkIdx} className="mb-4">
322322
<BaseLink
@@ -346,7 +346,7 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
346346
</BaseLink>
347347
))}
348348
</div>
349-
<List className="m-0 flex flex-col flex-wrap justify-center p-5 text-sm font-normal sm:flex-row sm:justify-between md:justify-center">
349+
<List className="m-0 flex list-none flex-col flex-wrap justify-center p-5 text-sm font-normal sm:flex-row sm:justify-between md:justify-center">
350350
{dipperLinks.map(({ to, text }) => (
351351
<ListItem key={text} className="px-2 text-center">
352352
<BaseLink

0 commit comments

Comments
 (0)