Skip to content

Commit 7e5151d

Browse files
committed
Removed internal flexbox for footer base; changed to div which occupies full row.
1 parent 469320d commit 7e5151d

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

components/Footer/Footer.tsx

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -279,21 +279,17 @@ const PageFooter = (props: PageFooterProps) => {
279279
</Col>
280280
</div>
281281
<MapleContainer className={`col-auto order-md-2 justify-self-end `} />
282-
<div
283-
className={`d-flex flex-column gap-2 flex-md-row flex-wrap col-12 flex-shrink-0 order-md-3 text-center text-md-start`}
284-
>
285-
<Col className="text-white col-md-auto">
286-
{t("legal.disclaimer")}
287-
{" - "}
288-
<a
289-
href={NEWSLETTER_SIGNUP_URL}
290-
style={{ color: "white" }}
291-
target="_blank"
292-
rel="noopener noreferrer"
293-
>
294-
{t("newsletter")}
295-
</a>
296-
</Col>
282+
<div className={`col-12 order-md-3 text-center text-md-start text-white`}>
283+
{t("legal.disclaimer")}
284+
{" - "}
285+
<a
286+
href={NEWSLETTER_SIGNUP_URL}
287+
style={{ color: "white" }}
288+
target="_blank"
289+
rel="noopener noreferrer"
290+
>
291+
{t("newsletter")}
292+
</a>
297293
</div>
298294
</FooterContainer>
299295
)

0 commit comments

Comments
 (0)