Skip to content
Snippets Groups Projects
Commit fe373c6f authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Rewritten spacing in CSS using theme.spacing().

parent ec8c1c7c
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -39,18 +39,20 @@ const styles = theme => ({
alignItems: 'center',
'&>*': {
minWidth: 'auto',
height: theme.spacing(4),
fontSize: '1.125rem',
textTransform: 'none',
padding: '0 0.25rem',
margin: '0.25rem'
padding: '0 ' + theme.spacing(1),
margin: theme.spacing(0.5)
},
'&>*:first-child': {
padding: '0 0',
margin: '0.25rem 0.5rem 0.25rem 0.25rem'
margin: theme.spacing(1) + ' ' + theme.spacing(2) + ' ' +
theme.spacing(1) + ' ' + theme.spacing(1)
},
'&>*:first-child svg': {
width: '31.5px',
height: '31.5px'
width: theme.spacing(4),
height: theme.spacing(4)
},
'&>*:not(:first-child):last-child': {
pointerEvents: 'none',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment