feat(system): improve Separator component

This commit is contained in:
Pavel Prichodko 2022-04-11 20:58:20 +02:00
parent 37fe627d99
commit fb6467ace9
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 2 additions and 2 deletions

View File

@ -14,12 +14,12 @@ export const Separator = styled(Root, {
'1': { '1': {
'&[data-orientation="horizontal"]': { '&[data-orientation="horizontal"]': {
height: '1px', height: '1px',
width: '100%', minWidth: '100%',
}, },
'&[data-orientation="vertical"]': { '&[data-orientation="vertical"]': {
width: '1px', width: '1px',
height: '100%', minHeight: '100%',
}, },
}, },
}, },