This commit is contained in:
2025-01-15 16:56:25 +05:30
parent 0b41ad8669
commit 0b0c4bf06b
19 changed files with 106 additions and 106 deletions

View File

@@ -13,18 +13,13 @@ interface MainFrameProps {
const MainFrame: FC<MainFrameProps> = ({ children, title }) => {
return (
<MotionVStack {...OPACITY_ON_LOAD} w="100%" h="94%" p={4} pt={0} pb={0} >
<Text color={'#fff'} w="100%" fontSize="sm" display="flex" alignItems="center" h="3%">
{title}
</Text>
<MotionVStack {...OPACITY_ON_LOAD} w="100%" h="94%" p={4} pb={0} >
<Box
w="100%"
h="97%"
border="1px solid #ffffff30"
bg="#434A5330"
bg="#ffffff"
rounded="md"
backdropFilter="blur(10px)"
shadow={'xs'}
boxShadow={'rgba(99, 99, 99, 0.2) 0px 2px 8px 0px'}
>
{children}
</Box>