changed default spacing value back to 0, fixed some pageContainers using padding instead of spacing
This commit is contained in:
parent
674763de24
commit
e654aa002b
4 changed files with 4 additions and 4 deletions
|
|
@ -48,7 +48,7 @@ export const PageContainer: React.FunctionComponent<Props> = (props: Props) => {
|
|||
const { children, fullViewport, isCenterCenter, sx } = props;
|
||||
// let fullViewport = false
|
||||
// let isCenterCenter = false
|
||||
const spacing = props.spacing ? props.spacing : 2;
|
||||
const spacing = props.spacing ?? 0;
|
||||
return (
|
||||
<Container
|
||||
className={classNames(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue