diff --git a/frontend/src/app/components/navbar/navright/ProfileDropdown.jsx b/frontend/src/app/components/navbar/navright/ProfileDropdown.jsx index e802002..f942406 100644 --- a/frontend/src/app/components/navbar/navright/ProfileDropdown.jsx +++ b/frontend/src/app/components/navbar/navright/ProfileDropdown.jsx @@ -11,7 +11,6 @@ const ProfileDropdown = ({ isMobile, user }) => { {/* Mobile View */} {isMobile && ( <> - {" "}
{/* User profile*/}
@@ -28,20 +27,22 @@ const ProfileDropdown = ({ isMobile, user }) => { )} -
- {/* Icon */} -
- +
+
+ {/* Icon */} +
+ +
+

Settings

-

Settings

-
- {/* Logout */} -
- {/* Icon */} -
- + {/* Logout */} +
+ {/* Icon */} +
+ +
+

Logout

-

Logout

); diff --git a/frontend/src/app/components/navbar/navright/styles.module.css b/frontend/src/app/components/navbar/navright/styles.module.css index 4717a5e..06502bf 100644 --- a/frontend/src/app/components/navbar/navright/styles.module.css +++ b/frontend/src/app/components/navbar/navright/styles.module.css @@ -100,6 +100,13 @@ } } +.actionButtons { + display: flex; + flex-direction: column; + + gap: 6px; + width: 100%; +} .settingsBtn, .logoutBtn { display: flex; @@ -204,4 +211,11 @@ align-self: stretch; background: #393d53; } + .actionButtons { + border-radius: 6px; + padding: 6px; + align-items: center; + gap: 6px; + align-self: stretch; + } }