Added px-2 to standard Container styling

This commit is contained in:
2022-06-19 22:13:13 +02:00
parent cce376a703
commit 5927739f7d

View File

@ -2,7 +2,7 @@ import { FC, HTMLProps } from "react";
import clsx from "clsx";
const styleClasses = {
base: "w-full lg:w-1/2 mx-auto",
base: "w-full lg:w-1/2 mx-auto px-2",
};
const Container: FC<HTMLProps<HTMLDivElement>> = (props) => {