This commit is contained in:
2025-02-12 16:27:49 +05:30
parent 001d346426
commit cd586ddf1b
6 changed files with 39 additions and 22 deletions

View File

@@ -14,12 +14,12 @@ interface MainFrameProps {
const MainFrame: FC<MainFrameProps> = ({ children, transperant }) => {
return (
<MotionVStack overflow={'hidden'} {...OPACITY_ON_LOAD} w="100%" minH="93%" pe={2} ps={1.5} pt={1} pb={2}>
<MotionVStack overflow={'auto'} {...OPACITY_ON_LOAD} w="100%" minH="93%" pe={2} ps={1.5} pt={1} pb={2}>
<Box
w="100%"
h="100%"
// minH="100%"
bg={transperant?'transperant':"#ffffff"}
overflow={'scroll'}
// overflow={'scroll'}
rounded="lg"
boxShadow={transperant?'none':'rgba(99, 99, 99, 0.2) 0px 2px 8px 0px'}
pt={transperant?0:3}