mirror of
https://github.com/Doodle3D/Doodle3D-Transform.git
synced 2025-01-18 15:15:10 +01:00
28 lines
491 B
JavaScript
28 lines
491 B
JavaScript
export default {
|
|
text: {
|
|
lineHeight: '1.5',
|
|
fontWeight: 'normal',
|
|
'& h1, & h2, & h3, & p, & ol, & ul': {
|
|
fontWeight: 'inherit',
|
|
margin: '0.5em 0'
|
|
},
|
|
'& h1': {
|
|
lineHeight: 1.2
|
|
},
|
|
'& ol, & ul': {
|
|
padding: '0 0 0 1em'
|
|
},
|
|
'& img, & iframe': {
|
|
maxWidth: '100%'
|
|
},
|
|
'& table': {
|
|
wordWrap: 'break-word',
|
|
width: '100%',
|
|
tableLayout: 'fixed'
|
|
},
|
|
'& small': {
|
|
fontWeight: 'lighter'
|
|
}
|
|
}
|
|
};
|