Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/components/MegaMenuLayout/MegaMenuLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<div
className={cx(
className,
"relative z-10 flex w-full items-center justify-center sm:h-[120px]",
"px-4 relative z-10 flex w-full items-center justify-center sm:h-[120px]",

Check failure on line 84 in lib/components/MegaMenuLayout/MegaMenuLayout.tsx

View workflow job for this annotation

GitHub Actions / lint

Replace `px-4·relative·z-10·flex·w-full·items-center·justify-center` with `relative·z-10·flex·w-full·items-center·justify-center·px-4`
)}
>
<nav
Expand Down Expand Up @@ -155,7 +155,7 @@
<RightSideActions />
</div>
) : (
!hidePhone && <PhoneButton className="flex-grow pb-4 sm:hidden" />
!hidePhone && <PhoneButton className="flex-grow pb-4 px-4 sm:hidden" />

Check failure on line 158 in lib/components/MegaMenuLayout/MegaMenuLayout.tsx

View workflow job for this annotation

GitHub Actions / lint

Replace `b-4·px` with `x-4·pb`

Check failure on line 158 in lib/components/MegaMenuLayout/MegaMenuLayout.tsx

View workflow job for this annotation

GitHub Actions / lint

Invalid Tailwind CSS classnames order
)}
</>
);
Expand Down
Loading