Skip to content

Commit

Permalink
Mobile Navbar height issue Deveimer#165
Browse files Browse the repository at this point in the history
  • Loading branch information
ishsarin committed Aug 1, 2023
1 parent 622471b commit 6292787
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const Navbar = () => {
<p
className={style.navtext}
onClick={() => setNav('category')}
style={{ color: `${nav === 'category' ? 'wheat' : 'gray'}` }}
style={{ color: `${nav === 'category' ? 'wheat' : 'gray'}`}}
>
<BsFillMusicPlayerFill />
<span className={style.text_mobile}>All Music</span>
Expand Down Expand Up @@ -339,6 +339,7 @@ const Navbar = () => {
}}
style={{
color: `${nav === 'logout' ? 'rgb(218, 84, 84)' : 'gray'}`,
paddingBottom: "18px",
}}
>
&nbsp;
Expand Down
5 changes: 4 additions & 1 deletion components/Navbar/Navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,16 @@
justify-content: flex-start !important;
margin-bottom: -6% !important;
align-items: center;
width: 50%;
/* width: 50%; */
}
.dashcontent_mobile {
height: fit-content;
min-width: 100%;
border-radius: 0.55rem;
}
.Navbar_navtext__MGXcv{
padding-bottom: 18px;
}
}
@keyframes neon {
0%,
Expand Down

0 comments on commit 6292787

Please sign in to comment.