From 7ad5d940da2c8acd505b9f8e330268ab2511a15c Mon Sep 17 00:00:00 2001 From: SKairinos Date: Mon, 3 Jul 2023 14:57:18 +0100 Subject: [PATCH] fix: margin bottom on back-to links --- src/theme/components/MuiLink.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/theme/components/MuiLink.ts b/src/theme/components/MuiLink.ts index 1c0a8796..c03b77c2 100644 --- a/src/theme/components/MuiLink.ts +++ b/src/theme/components/MuiLink.ts @@ -1,4 +1,5 @@ import { includesClassNames } from '../../helpers'; +import typography from '../typography'; import Components from './_components'; const MuiLink: Components['MuiLink'] = { @@ -24,6 +25,7 @@ const MuiLink: Components['MuiLink'] = { ), ...(includesClassNames(ownerState, ['back-to']) && { textDecoration: 'none', + marginBottom: typography.body1?.marginBottom, ':hover': { fontWeight: 'bold', textDecoration: 'underline'