Skip to content

Commit

Permalink
removed stupid border
Browse files Browse the repository at this point in the history
  • Loading branch information
EricSvebakk committed Jul 11, 2024
1 parent ff2f04e commit 98e5f6b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/pages/main/profile/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,17 @@ function ProfilePage() {
direction="column"
spacing={2}
// maxWidth={250}
sx={{ border: "1px solid red" }}
// sx={{ border: "1px solid red" }}
>
{CheckedTextField("First name", firstName, setFirstName)}
{CheckedTextField("Last name", lastName, setLastName)}
{CheckedTextField("Email", email, setEmail)}
<Button variant="outlined">Update</Button>
</Stack>

<Stack direction="column" spacing={1} sx={{ border: "1px solid red" }}>
<Stack direction="column" spacing={1}
// sx={{ border: "1px solid red" }}
>
<Card>
<CardContent>
<Typography variant="h6" gutterBottom>Roles:</Typography>
Expand Down

0 comments on commit 98e5f6b

Please sign in to comment.