Fix - light theme ui break due to theme

This commit is contained in:
lalitdeore12@gmail.com
2025-05-20 01:02:16 +05:30
parent dc166a3d53
commit e92c2817b2
8 changed files with 542 additions and 61 deletions
+3 -2
View File
@@ -644,14 +644,15 @@ const CloudSyncTab = (props) => {
<TextField
color="primary"
style={{
backgroundColor: "#1a1a1a",
backgroundColor: theme.palette.textFieldStyle.backgroundColor,
marginRight: 10,
height: 35,
}}
InputProps={{
style: {
height: "35px",
color: "white",
color: theme.palette.textFieldStyle.color,
backgroundColor: theme.palette.textFieldStyle.backgroundColor,
fontSize: "1em",
},
}}