Skip to content

Commit b7d17fa

Browse files
Rachel Kucharskisophia-buirachelk585atvanekMatteoDiter
committed
fixed white text on state mgmt modal
Co-authored-by: Sophia Bui <[email protected]> Co-authored-by: rachelk585 <[email protected]> Co-authored-by: Adam Vanek <[email protected]> Co-authored-by: Matteo Diter <[email protected]>
1 parent 7b1c4db commit b7d17fa

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,12 @@ const TableParentProps = props => {
121121
const useStyles = makeStyles({
122122
themeLight: {
123123
color: 'rgba(0,0,0,0.54)',
124+
'& button:hover':{
125+
backgroundColor: 'LightGray'
126+
},
127+
'& button':{
128+
color: 'black'
129+
},
124130
'& .MuiTablePagination-root': {
125131
color: 'rbga(0,0,0,0.54)'
126132
}

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,12 @@ const TablePassedInProps = props => {
112112
const useStyles = makeStyles({
113113
themeLight: {
114114
color: 'rgba(0,0,0,0.54)',
115+
'& button:hover':{
116+
backgroundColor: 'LightGray'
117+
},
118+
'& button':{
119+
color: 'black'
120+
},
115121
'& .MuiTablePagination-root': {
116122
color: 'rbga(0,0,0,0.54)'
117123
}

app/src/components/StateManagement/StateManagement.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const StateManager = (props): JSX.Element => {
3737
// then this will re-render the dataTable
3838

3939
const background_Color = isDarkMode ? '#21262b' : 'white';
40+
const color = isDarkMode ? 'white' : 'black';
4041

4142
return (
4243
<React.Fragment>

app/src/public/styles/style.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -747,3 +747,7 @@ a.nav_link:hover {
747747
align-items: center;
748748
}
749749

750+
li {
751+
color: black !important;
752+
}
753+

0 commit comments

Comments
 (0)