Bridge integration
This commit is contained in:
parent
42a5e09c94
commit
162390008b
56 changed files with 776 additions and 591 deletions
|
|
@ -5,7 +5,7 @@ import {
|
|||
IconButton,
|
||||
} from "@mui/material";
|
||||
import { Refresh as RefreshIcon } from "@mui/icons-material";
|
||||
import { colors } from "../styles/theme";
|
||||
import { colors, fonts } from "../styles/theme";
|
||||
|
||||
type TextFieldProps = {
|
||||
name: string;
|
||||
|
|
@ -28,7 +28,8 @@ export const TextField: FC<TextFieldProps> = ({
|
|||
lines = 1,
|
||||
helperText,
|
||||
}) => {
|
||||
const { darkMediumGray } = colors;
|
||||
const { darkMediumGray, white } = colors;
|
||||
const { roboto } = fonts;
|
||||
|
||||
return (
|
||||
<InternalTextField
|
||||
|
|
@ -58,7 +59,8 @@ export const TextField: FC<TextFieldProps> = ({
|
|||
) : null,
|
||||
|
||||
sx: {
|
||||
backgroundColor: "#fff",
|
||||
fontFamily: roboto.style.fontFamily,
|
||||
backgroundColor: white,
|
||||
},
|
||||
}}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue