mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
feature: adjust checkbox size
This commit is contained in:
parent
db6b51c74e
commit
a4e7211625
2 changed files with 5 additions and 4 deletions
|
|
@ -10,15 +10,15 @@ const StyledContainer = styled.span`
|
|||
input[type='checkbox'] {
|
||||
accent-color: ${(props) => props.theme.blue};
|
||||
margin: 8px;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
height: 14px;
|
||||
width: 14px;
|
||||
}
|
||||
|
||||
input[type='checkbox']::before {
|
||||
content: '';
|
||||
border: 1px solid black;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 2px;
|
||||
display: block;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ type OwnProps = {
|
|||
const TD = styled.td`
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
height: 32px;
|
||||
|
||||
::before {
|
||||
content: '';
|
||||
|
|
|
|||
Loading…
Reference in a new issue