Skip to content

Commit

Permalink
fix(TotalLayout/Footer): fix variable name used to show the footer bo…
Browse files Browse the repository at this point in the history
…rder in TotalLayoutFooter.styles.js
  • Loading branch information
paola-p committed Dec 17, 2023
1 parent f182887 commit 3784184
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { createStyles } from '@mantine/styles';

const TotalLayoutFooterStyles = createStyles((theme, { showFooterShadow, leftOffset }) => ({
const TotalLayoutFooterStyles = createStyles((theme, { showFooterBorder, leftOffset }) => ({
root: {},
footer: {
minWidth: 928,
maxWidth: 928,
width: '100%',
marginLeft: leftOffset,
backgroundColor: 'white',
borderTop: showFooterShadow && `1px solid ${theme.other.divider.background.color.default}`,
borderTop: showFooterBorder && `1px solid ${theme.other.divider.background.color.default}`,
zIndex: 1,
},
}));
Expand Down

0 comments on commit 3784184

Please sign in to comment.