Skip to content

Commit

Permalink
fixes in z-values
Browse files Browse the repository at this point in the history
  • Loading branch information
dbence2002 committed Sep 25, 2023
1 parent d39ad62 commit c11dcb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/concrete/other/Menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function MenuSideBar({ selected, isOpen, onClose }) {
return (
<aside
ref={menuRef}
className={`h-full z-10 pt-20 overflow-y-auto xl:hidden fixed right-0 bg-grey-825 border-l-1 border-bordercol ${
className={`h-full z-20 pt-20 overflow-y-auto overflow-x-hidden xl:hidden fixed right-0 bg-grey-825 border-l-1 border-bordercol ${
isOpen ? "w-80 opacity-100" : "w-0 opacity-0"
} ease-in-out transition-width-opacity duration-200`}>
<div className="flex flex-col justify-center">
Expand Down Expand Up @@ -217,7 +217,7 @@ function MenuTopBar({ selected, isOpen, onToggle }) {
);
});
return (
<div className="z-20 flex justify-center bg-grey-825 border-b-1 border-grey-750 fixed w-full top-0">
<div className="z-30 flex justify-center bg-grey-825 border-b-1 border-grey-750 fixed w-full top-0">
<div className="w-full max-w-7xl flex justify-between items-center">
<div className="flex w-full">
<Link to="/" className="font-semibold text-lg mx-8 my-4">
Expand Down

0 comments on commit c11dcb9

Please sign in to comment.