chore: tweaks

This commit is contained in:
zerosoul
2022-04-29 17:18:41 +08:00
parent 0d8fc16d65
commit b72e962c77
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ const Styled = styled.div`
overflow: auto;
font-weight: 400;
font-size: 14px;
line-height: 20px;
line-height: 22px;
color: #475467;
> .box {
display: flex;
+1 -1
View File
@@ -34,5 +34,5 @@ const Styled = styled.input`
}
`;
export default function StyledCheckbox(props) {
return <Styled {...props} type="checkbox" />;
return <Styled readOnly {...props} type="checkbox" />;
}