Skip to content

Commit

Permalink
FUCK CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuzJ committed Nov 11, 2023
1 parent 3a99ca0 commit 5261899
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions dance-app/src/components/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@ const LoginForm = () => {
<Typography variant="h4" color="white" gutterBottom>
Login
</Typography>
<form onSubmit={handleSubmit}>
<form onSubmit={handleSubmit} style={{ color: "white" }}>
<TextField
label="Username"
type="text"
value={username}
onChange={handleUsernameChange}
fullWidth
margin="normal"
sx={{ color: "white!important" }}
sx={{
input: { color: "white" },
}}
/>
<TextField
label="Password"
Expand All @@ -71,13 +73,18 @@ const LoginForm = () => {
onChange={handlePasswordChange}
fullWidth
margin="normal"
sx={{ color: "white!important" }}
sx={{
input: { color: "white" },
}}
/>
<br />
<Button
type="submit"
variant="contained"
sx={{ color: "white", backgroundColor: "black" }}
sx={{
color: "white",
backgroundColor: theme.palette.secondary.main,
}}
>
Login
</Button>
Expand Down

0 comments on commit 5261899

Please sign in to comment.