From 2b23294ae5290a162ecc20376ca6c839b3ff3f29 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Tue, 24 Sep 2024 17:40:58 +0000 Subject: [PATCH 1/3] Update src/styles/styles.css --- src/styles/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/styles.css b/src/styles/styles.css index 79f8f23..8458aae 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -330,7 +330,7 @@ h6 { } .inputMain { - transition: ease 0.4s; + transition: border ease 0.4s; background: rgba(0, 0, 0, 0.1); outline: unset; border-radius: 10px; From 7002e3e18d0d207058748055b6f21a4b566aff18 Mon Sep 17 00:00:00 2001 From: freakoverse Date: Tue, 24 Sep 2024 17:44:41 +0000 Subject: [PATCH 2/3] Update src/pages/settings/index.tsx --- src/pages/settings/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/settings/index.tsx b/src/pages/settings/index.tsx index 1fe2351..919ac98 100644 --- a/src/pages/settings/index.tsx +++ b/src/pages/settings/index.tsx @@ -70,7 +70,7 @@ const SettingTabs = () => { { path: appRoutes.settingsRelays, label: 'Relays', icon: }, { path: appRoutes.settingsPreferences, - label: 'Preferences', + label: 'Preferences (WIP)', icon: } ] @@ -101,7 +101,7 @@ const SettingTabs = () => {
-

Settings (WIP)

+

Settings

{navLinks.map(({ path, label, icon }) => From 26accf4eca525aa7c9d35a8cbba8e159ed8df77c Mon Sep 17 00:00:00 2001 From: freakoverse Date: Tue, 24 Sep 2024 17:48:54 +0000 Subject: [PATCH 3/3] Update src/pages/settings/index.tsx --- src/pages/settings/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/settings/index.tsx b/src/pages/settings/index.tsx index 919ac98..d846294 100644 --- a/src/pages/settings/index.tsx +++ b/src/pages/settings/index.tsx @@ -67,7 +67,7 @@ const SettingTabs = () => { const navLinks = [ { path: appRoutes.settingsProfile, label: 'Profile', icon: }, - { path: appRoutes.settingsRelays, label: 'Relays', icon: }, + { path: appRoutes.settingsRelays, label: 'Relays (WIP)', icon: }, { path: appRoutes.settingsPreferences, label: 'Preferences (WIP)', @@ -78,7 +78,7 @@ const SettingTabs = () => { if (isAdmin) { navLinks.push({ path: appRoutes.settingsAdmin, - label: 'Admin', + label: 'Admin (WIP)', icon: }) }