Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: 2.3.5 #185

Merged
merged 9 commits into from
Jan 17, 2025
Prev Previous commit
Next Next commit
fix: changed z indexes (#177)
### Description

Adjusted the `z-index` on drop down & footer components
RyRy79261 authored Jan 13, 2025
commit 48bd4f5f56e3fcf881de2bb66c2e4618a458b9f2
2 changes: 1 addition & 1 deletion src/components/nav/Footer.tsx
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ import { isStale } from 'src/utils/time'

export function Footer() {
return (
<div className="z-20 inline-flex justify-between w-full p-3 mt-10 sm:px-5 sm:py-7 pt-7">
<div className="z-10 inline-flex justify-between w-full p-3 mt-10 sm:px-5 sm:py-7 pt-7">
<div className="inline-flex items-start justify-start gap-4">
<div className="p-2 justify-start items-start gap-2.5 flex">
<FooterIconLink to={links.twitter} imgSrc={Twitter} alt="Twitter" />
2 changes: 1 addition & 1 deletion src/layout/Dropdown.tsx
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ export function DropdownMenu({
leaveTo="transform opacity-0 scale-95"
>
<Menu.Items
className={`z-40 absolute -right-1.5 mt-3 origin-top-right rounded-md bg-white shadow-md drop-shadow-md ring-1 ring-black ring-opacity-5 focus:outline-none ${menuClasses}`}
className={`z-50 absolute -right-1.5 mt-3 origin-top-right rounded-md bg-white shadow-md drop-shadow-md ring-1 ring-black ring-opacity-5 focus:outline-none ${menuClasses}`}
>
{menuItems.map((mi, i) => (
<Menu.Item key={`menu-item-${i}`}>{mi}</Menu.Item>