From 5927739f7d3a8229c36cfa66a593ac2cf7b2aa57 Mon Sep 17 00:00:00 2001 From: strNophix Date: Sun, 19 Jun 2022 22:13:13 +0200 Subject: [PATCH] Added px-2 to standard Container styling --- frontend/src/components/layouts/Container.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/layouts/Container.tsx b/frontend/src/components/layouts/Container.tsx index a2dc12d..922749e 100644 --- a/frontend/src/components/layouts/Container.tsx +++ b/frontend/src/components/layouts/Container.tsx @@ -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> = (props) => {