Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 4x 4x 4x 14x 748x 316x 158x 748x | import { InputLabel, styled } from "@mui/material"; import Button from "components/Button"; import TextField from "components/TextField"; const StyledForm = styled("form")(({ theme }) => ({ display: "flex", flexDirection: "column", marginBottom: theme.spacing(2), width: "100%", [theme.breakpoints.up("md")]: { alignItems: "flex-start", }, })); const StyledInputLabel = styled(InputLabel)(({ theme }) => ({ color: theme.palette.text.primary, fontWeight: 700, [theme.breakpoints.up("md")]: { marginBottom: theme.spacing(2), }, })); const StyledTextField = styled(TextField)(({ theme }) => ({ marginBottom: theme.spacing(2), marginTop: 0, width: "100%", })); const StyledButton = styled(Button)(({ theme }) => ({ color: theme.palette.secondary.contrastText, fontWeight: 700, marginTop: theme.spacing(2), [theme.breakpoints.up("md")]: { borderRadius: theme.shape.borderRadius, }, })); export { StyledButton, StyledForm, StyledInputLabel, StyledTextField }; |