Skip to content

Commit 09cf07c

Browse files
authored
differentiate signature field box (#410)
1 parent ebeaf65 commit 09cf07c

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

apps/web/src/components/createFormTemplate/createFormTemplateEditor/SignatureField.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,24 @@ export default function SignatureField({
6161
<Box
6262
display="flex"
6363
alignItems="center"
64-
justifyContent="center"
64+
justifyContent="left"
6565
width="100%"
6666
height="100%"
6767
border="1px #808080"
6868
borderRadius="4px"
6969
>
70-
<Text color="#808080" fontSize="14px"></Text>
70+
<Text color="#808080" fontSize="14px">
71+
X
72+
</Text>
73+
<Box
74+
position="absolute"
75+
bottom="16px"
76+
width="80%"
77+
height="1px"
78+
bg="#7C7F86"
79+
left="50%"
80+
transform="translateX(-50%)"
81+
/>
7182
</Box>
7283
{!disableEdit && selected && (
7384
<Box

0 commit comments

Comments
 (0)