Skip to content

Commit

Permalink
Hide search for now (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi authored Nov 15, 2024
1 parent 95aaea2 commit 4ee9662
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/components/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {useAppDispatch, useAppSelector} from "../hooks";
import {selectAboutModalShow, selectNavigationExpanded, setAboutModalShow, setNavigationExpanded} from "../appSlice";

import { ReactComponent as Menu } from "./menu.svg"
import { ReactComponent as Search } from "./search.svg"
import { ReactComponent as About } from "./about.svg"

import "./TopBar.css"
Expand All @@ -39,13 +38,6 @@ export default function TopBar() {
<Menu className="toggle-icon"/>
</div>

<div className="search">
<label>
<input type="text" placeholder="Search here"/>
<Search className="icon"/>
</label>
</div>

<div className="about">
<About className="icon" onClick={() => dispatch(setAboutModalShow(true))}/>
<div className={aboutModalShow ? "about-modal active" : "about-modal"}>
Expand Down

0 comments on commit 4ee9662

Please sign in to comment.