feat(ui): border radius on canvas

This commit is contained in:
psychedelicious 2024-04-30 20:29:01 +10:00 committed by Kent Keirsey
parent 7a5399e83c
commit 631878b212

View File

@ -239,7 +239,7 @@ export const StageComponent = memo(({ asPreview = false }: Props) => {
return (
<Flex overflow="hidden" w="full" h="full">
<Flex ref={wrapperRef} w="full" h="full" alignItems="center" justifyContent="center">
<Flex ref={containerRef} tabIndex={-1} bg="base.850" />
<Flex ref={containerRef} tabIndex={-1} bg="base.850" borderRadius="base" overflow="hidden" />
</Flex>
</Flex>
);