1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-17 08:35:47 +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

@@ -3,11 +3,11 @@ import Typography from '@material-ui/core/Typography';
import { default as MuiFab } from '@material-ui/core/Fab';
import colors from '../../utils/styles/colors';
export const Details = styled('span')`
display: flex;
flex-direction: column;
align-items: center;
`;
export const Details = styled('span')({
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
});
export const Content = styled('div')`
margin: 10px 0 10px 0;