thats all for today!!

This commit is contained in:
2026-03-16 16:45:39 +08:00
parent 925804021a
commit dfad22a03f
2 changed files with 28 additions and 13 deletions

View File

@@ -11,7 +11,6 @@ const ProfileDropdown = ({ isMobile, user }) => {
{/* Mobile View */} {/* Mobile View */}
{isMobile && ( {isMobile && (
<> <>
{" "}
<div className={styles.profileBadge}> <div className={styles.profileBadge}>
{/* User profile*/} {/* User profile*/}
<div className={styles.userImgContainer}> <div className={styles.userImgContainer}>
@@ -28,6 +27,7 @@ const ProfileDropdown = ({ isMobile, user }) => {
</> </>
)} )}
<div className={styles.actionButtons}>
<div className={styles.settingsBtn}> <div className={styles.settingsBtn}>
{/* Icon */} {/* Icon */}
<div className={styles.btn}> <div className={styles.btn}>
@@ -44,6 +44,7 @@ const ProfileDropdown = ({ isMobile, user }) => {
<p>Logout</p> <p>Logout</p>
</div> </div>
</div> </div>
</div>
); );
}; };

View File

@@ -100,6 +100,13 @@
} }
} }
.actionButtons {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
}
.settingsBtn, .settingsBtn,
.logoutBtn { .logoutBtn {
display: flex; display: flex;
@@ -204,4 +211,11 @@
align-self: stretch; align-self: stretch;
background: #393d53; background: #393d53;
} }
.actionButtons {
border-radius: 6px;
padding: 6px;
align-items: center;
gap: 6px;
align-self: stretch;
}
} }