feat(ui): add border around starting frame image

This commit is contained in:
psychedelicious
2025-08-28 15:47:18 +10:00
committed by Mary Hipp Rogers
parent 313aedb00a
commit 4ba85c62ca

View File

@@ -37,7 +37,7 @@ export const StartingFrameImage = () => {
{!imageDTO && <UploadImageIconButton w="full" h="full" isError={!imageDTO} onUpload={onUpload} fontSize={36} />}
{imageDTO && (
<>
<DndImage imageDTO={imageDTO} borderRadius="base" />
<DndImage imageDTO={imageDTO} borderRadius="base" borderWidth={1} borderStyle="solid" />
<Flex position="absolute" flexDir="column" top={1} insetInlineEnd={1} gap={1}>
<DndImageIcon
onClick={onReset}