summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/App/Navbar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/App/Navbar.tsx')
-rw-r--r--frontend/src/App/Navbar.tsx10
1 files changed, 2 insertions, 8 deletions
diff --git a/frontend/src/App/Navbar.tsx b/frontend/src/App/Navbar.tsx
index 3b5ce1881..679a0e3e7 100644
--- a/frontend/src/App/Navbar.tsx
+++ b/frontend/src/App/Navbar.tsx
@@ -130,8 +130,7 @@ const AppNavbar: FunctionComponent = () => {
<Group gap="xs">
<Action
label="Change Theme"
- color={dark ? "yellow" : "indigo"}
- variant="subtle"
+ c={dark ? "yellow" : "indigo"}
onClick={() => toggleColorScheme()}
icon={dark ? faSun : faMoon}
></Action>
@@ -139,12 +138,7 @@ const AppNavbar: FunctionComponent = () => {
href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XHHRWXT9YB7WE&source=url"
target="_blank"
>
- <Action
- label="Donate"
- icon={faHeart}
- variant="subtle"
- color="red"
- ></Action>
+ <Action label="Donate" icon={faHeart} c="red"></Action>
</Anchor>
</Group>
</AppShell.Section>