mirror of
https://github.com/suren-atoyan/monaco-react.git
synced 2026-01-18 15:54:45 +00:00
22 lines
351 B
JavaScript
22 lines
351 B
JavaScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
const useStyles = makeStyles(theme => ({
|
|
root: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
padding: 5,
|
|
},
|
|
title: {
|
|
paddingTop: 10,
|
|
paddingBottom: 10,
|
|
},
|
|
editor: {
|
|
height: '100%',
|
|
},
|
|
diffEditor: {
|
|
height: '100vh',
|
|
}
|
|
}));
|
|
|
|
export default useStyles;
|