This commit is contained in:
Kenneth Jannette
2024-01-12 15:14:06 -06:00
parent 87d0ed739c
commit e1539d9a37
2 changed files with 2 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ const CustomToggle = React.forwardRef(({ onClick }, ref) => (
const NavbarElement = (props) => { const NavbarElement = (props) => {
//const [showMenu, setShowMenu] = useState(false); //const [showMenu, setShowMenu] = useState(false);
const [menuOpen, setMenuOpen] = useState(true); const [menuOpen, setMenuOpen] = useState(false);
const [isMobile, setIsMobile] = useState(window.innerWidth < 440); const [isMobile, setIsMobile] = useState(window.innerWidth < 440);
const token = window.sessionStorage.getItem("token"); const token = window.sessionStorage.getItem("token");
const navigate = useNavigate(); const navigate = useNavigate();

View File

@@ -125,6 +125,7 @@
} }
.features-header-text { .features-header-text {
letter-spacing: -0.07rem;
margin-top: 0px; margin-top: 0px;
padding: 0px; padding: 0px;
} }