Skip to content

Commit

Permalink
chore: Update padding to only target the auth menu on generic pages
Browse files Browse the repository at this point in the history
  • Loading branch information
EnMod committed Sep 3, 2024
1 parent 075e3bf commit d419bbe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/mobile-menu-levels-generic/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ import s from './mobile-menu-levels-generic.module.css'
function MobileMenuLevelsGeneric() {
return (
<MobileMenuContainer className={s.mobileMenuContainer}>
<MobileAuthenticationControls />
<div className={s.mobileMenuAuthContainer}>
<MobileAuthenticationControls />
</div>

<NavigationMenu.Root className={s.mobileMenuNavList}>
<ProductPanel
productCategories={navigationData}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
*/

.mobileMenuContainer {
padding: 24px;
z-index: 4;
}

.mobileMenuAuthContainer {
padding: 16px;
}

.mobileMenuNavList {
list-style: none;
margin: 0;
Expand Down

0 comments on commit d419bbe

Please sign in to comment.