Skip to content

Commit 2a07a08

Browse files
committed
Css Edits
1 parent 251f29b commit 2a07a08

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

app/src/components/StateManagement/CreateTab/components/StatePropsPanel.tsx

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const StatePropsPanel = ({ isThemeLight, data }): JSX.Element => {
198198
/>
199199
<TextField
200200
id="textfield-value"
201-
label="initial value:"
201+
label="initial value"
202202
variant="outlined"
203203
value={inputValue}
204204
onChange={(e) => setInputValue(e.target.value)}
@@ -218,11 +218,7 @@ const StatePropsPanel = ({ isThemeLight, data }): JSX.Element => {
218218
>
219219
<InputLabel
220220
id="select-required-label"
221-
className={
222-
isThemeLight
223-
? classes.greyThemeFontColor
224-
: classes.darkThemeFontColor
225-
}
221+
style={{color: 'black'}}
226222
>
227223
Type
228224
</InputLabel>
@@ -509,7 +505,7 @@ const useStyles = makeStyles((theme: Theme) => ({
509505
fontSize: '90%',
510506
textAlign: 'center',
511507
margin: '-20px 0px 5px 150px',
512-
borderStyle: 'none',
508+
border: ' 1px solid #186BB4',
513509
transition: '0.3s',
514510
// borderRadius: "25px",
515511
},
@@ -524,7 +520,7 @@ const useStyles = makeStyles((theme: Theme) => ({
524520
color: '#fff'
525521
},
526522
greyThemeFontColor: {
527-
color: 'rgba(0,0,0,0.54)'
523+
color: 'white'
528524
},
529525
formControl: {
530526
margin: '8px',
@@ -538,7 +534,7 @@ const useStyles = makeStyles((theme: Theme) => ({
538534
},
539535
rootLight: {
540536
'& .MuiFormLabel-root': {
541-
color: 'rgba(0,0,0,0.54)'
537+
color: 'white'
542538
}
543539
},
544540
rootDark: {

0 commit comments

Comments
 (0)