feat : update all button

This commit is contained in:
lukman
2024-08-29 17:43:05 +08:00
parent 2ce1f204ed
commit e5adacb636
20 changed files with 406 additions and 295 deletions

View File

@@ -84,21 +84,23 @@ export default function ViewFilter({ linkFilter }: { linkFilter: string }) {
)
}
</Box>
<Box pos={'fixed'} bottom={0} p={rem(15)} w={"100%"} style={{
maxWidth: rem(550)
}}>
<Button
fullWidth
radius={100}
size="lg"
color={WARNA.biruTua}
onClick={() => {
router.push(`/${linkFilter}?group=` + selectedFilter)
}}
>
Terapkan
</Button>
</Box>
<Box pos={'fixed'} bottom={0} p={rem(20)} w={"100%"} style={{
maxWidth: rem(550),
zIndex: 999,
backgroundColor: `${WARNA.bgWhite}`,
}}>
<Button
fullWidth
radius={100}
size="lg"
color={WARNA.biruTua}
onClick={() => {
router.push(`/${linkFilter}?group=` + selectedFilter)
}}
>
Terapkan
</Button>
</Box>
</Box>
);
}