File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { withStyles } from '@material-ui/core/styles';
4
4
import Grid from '@material-ui/core/Grid' ;
5
5
import TextField from '@material-ui/core/TextField' ;
6
6
import IconButton from '@material-ui/core/IconButton' ;
7
+ import Typography from '@material-ui/core/Typography' ;
7
8
import SaveIcon from '@material-ui/icons/Save' ;
8
9
import { updateHtmlAttr } from '../actions/components' ;
9
10
import { HTMLelements , getSize } from '../utils/htmlElements.util.ts' ;
@@ -80,7 +81,7 @@ class HtmlAttr extends Component {
80
81
notchedOutline : classes . notchedOutline ,
81
82
} ,
82
83
} }
83
- style = { { background : '#424242' } }
84
+ style = { { background : '#424242' , height : '80%' } }
84
85
label = { attr }
85
86
variant = "outlined"
86
87
id = { attr }
@@ -106,13 +107,9 @@ class HtmlAttr extends Component {
106
107
</ Fab >
107
108
</ Grid >
108
109
< Grid item xs = { 4 } >
109
- < Paper className = { classes . root } elevation = { 1 } >
110
- < p style = { { color : 'gray' } } >
111
- { attr }
112
- { ': ' }
113
- </ p >
110
+ < Paper className = { classes . root } style = { { height : '80%' } } >
114
111
< p style = { { color : 'black' } } >
115
- { focusChild . HTMLInfo [ attr ] ? focusChild . HTMLInfo [ attr ] : 'no attribute assigned' }
112
+ { focusChild . HTMLInfo [ attr ] ? focusChild . HTMLInfo [ attr ] : ' no attribute assigned' }
116
113
</ p >
117
114
</ Paper >
118
115
</ Grid >
You can’t perform that action at this time.
0 commit comments