From bfccc85718f4e1069fcb8a35ec603f8481d99bc5 Mon Sep 17 00:00:00 2001 From: Rithvik Nishad Date: Sat, 7 Dec 2024 20:37:59 +0530 Subject: [PATCH] Fix excessive vertical padding in all pages --- src/components/Common/Page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Common/Page.tsx b/src/components/Common/Page.tsx index 32e763c45b9..558d1432182 100644 --- a/src/components/Common/Page.tsx +++ b/src/components/Common/Page.tsx @@ -33,7 +33,7 @@ export default function Page(props: PageProps) { let padding = ""; if (!props.noImplicitPadding) { - if (!props.hideBack || props.componentRight) padding = "py-3 md:p-6"; + if (!props.hideBack || props.componentRight) padding = "py-3 md:px-6"; else padding = "px-6 py-5"; }