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

Hide items except on lg #134

Merged
merged 2 commits into from
Jul 12, 2024
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 src/app/components/nav.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default function Nav({ isDarkMode, toggleTheme }) {
</div>
</div>

<div className="relative hidden md:block">
<div className="relative hidden lg:block">
<button
onClick={toggleDropdown}
className={`focus:outline-none text-[0.58rem] font-bold sm:font-bold items-center sm:text-sm flex md:text-sm flex-1 p-2 hover:${
Expand Down Expand Up @@ -303,7 +303,7 @@ export default function Nav({ isDarkMode, toggleTheme }) {
)}
</div>

<div className="flex ml-1 justify-center gap-2 md:gap-4 items-center lg:flex">
<div className="flex ml-1 justify-center gap-2 md:gap-4 items-center hidden lg:flex">
<Link
href="/codeedit"
className={`text-[0.57rem] font-bold sm:text-sm p-2 hover:${
Expand Down