From c63c3e72193acd9c61e7fbc1caf1cd20b807beba Mon Sep 17 00:00:00 2001 From: G Date: Thu, 25 Apr 2024 14:06:43 +0000 Subject: [PATCH] using common style containerFull --- src/components/ContainerBorderTopCurved.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/ContainerBorderTopCurved.tsx b/src/components/ContainerBorderTopCurved.tsx index 78fe1fb..b52b496 100644 --- a/src/components/ContainerBorderTopCurved.tsx +++ b/src/components/ContainerBorderTopCurved.tsx @@ -1,3 +1,4 @@ +import { containers } from "@styles/Commons"; import Box from "./bases/Box"; type Props = { children: React.ReactNode }; @@ -7,7 +8,7 @@ const ContainerBorderTopCurved = ({ children }: Props) => { backgroundColor={"white"} borderTopLeftRadius={30} borderTopRightRadius={30} - style={{ height: "100%" }} + style={containers.containerFull} > {children} -- libgit2 0.27.1