mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-03-13 08:41:41 +01:00
16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
import createStyles from '@material-ui/core/styles/createStyles'
|
|
import makeStyles from '@material-ui/core/styles/makeStyles'
|
|
|
|
export const useStyles = makeStyles(() =>
|
|
createStyles({
|
|
textarea: {
|
|
width: '100%',
|
|
padding: '15px 15px',
|
|
marging: '0px 10px',
|
|
},
|
|
textDesc: {
|
|
width: '150px',
|
|
},
|
|
})
|
|
)
|