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