Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsrobot committed Jan 6, 2024
1 parent 489dee1 commit 294cf22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/routes/signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function Signup() {
<Checkbox aria-label='Agree to terms and conditions input' checked={agreed} onCheckedChange={toggleAgreed} /> I agree to the <Link href='/terms' color="pink">terms and conditions.</Link>
</Flex>
</Text>
<Button mt="4" aria-label='Sign up to Wikid button' disabled={!valid || navigation.state == "submitting"} onClick={handleSignUp}>Signup</Button>
<Button radius='full' mt="4" aria-label='Sign up to Wikid button' disabled={!valid || navigation.state == "submitting"} onClick={handleSignUp}>Signup</Button>
<Text align="center" size="2">Already got an account, <Link size="2" href="/login">login to Wikid</Link></Text>
</Flex>
</Card>
Expand Down
8 changes: 4 additions & 4 deletions app/routes/u.settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default function UserSettings() {
<Tabs.List>
<Tabs.Trigger value="account">Profile</Tabs.Trigger>
<Tabs.Trigger value="appearance">Appearance</Tabs.Trigger>
<Tabs.Trigger value="notifications">Notifications</Tabs.Trigger>
{/* <Tabs.Trigger value="notifications">Notifications</Tabs.Trigger> */}
<Tabs.Trigger value="logout">Logout</Tabs.Trigger>
<Tabs.Trigger value="delete">Delete account</Tabs.Trigger>
</Tabs.List>
Expand Down Expand Up @@ -278,7 +278,7 @@ export default function UserSettings() {
placeholder="About you" />
</label>
<label>
<Button radius='full' onClick={handleProfileChange} disabled={navigation.state == "submitting"}>Save changes</Button>
<Button mt="2" size="1" radius='full' onClick={handleProfileChange} disabled={navigation.state == "submitting"}>Save changes</Button>
</label>
</Flex>
</Tabs.Content>
Expand Down Expand Up @@ -307,7 +307,7 @@ export default function UserSettings() {
<Flex direction="column" gap="3" style={{ maxWidth: 400 }}>
<Text size="2">Logout of Wikid.</Text>
<Link href="/logout">
<Button radius='full' color='red'>Logout</Button>
<Button size="1" radius='full' color='red'>Logout</Button>
</Link>
</Flex>
</Tabs.Content>
Expand All @@ -322,7 +322,7 @@ export default function UserSettings() {
</Flex>
</Text>
<Link href="/logout">
<Button radius='full' disabled={!understood} color='red'>Delete account</Button>
<Button size="1" radius='full' disabled={!understood} color='red'>Delete account</Button>
</Link>
</Flex>
</Tabs.Content>
Expand Down

0 comments on commit 294cf22

Please sign in to comment.