1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-16 16:15:45 +07:00

refactor: move basic CSS from templates to JS objects

This commit is contained in:
Sergio Herrera Guzmán
2019-07-15 10:41:12 +02:00
parent 786da9975f
commit 8ea017d871
7 changed files with 59 additions and 59 deletions

View File

@@ -8,12 +8,12 @@ export const Heading = styled(Typography)`
}
`;
export const Spacer = styled('div')`
flex: 1 1 auto;
border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
white-space: nowrap;
height: 0.5em;
`;
export const Spacer = styled('div')({
flex: '1 1 auto',
borderBottom: '1px dotted rgba(0, 0, 0, 0.2)',
whiteSpace: 'nowrap',
height: '0.5em',
});
export const ListItemText = styled(MuiListItemText)`
&& {