Skip to content

Commit

Permalink
Add new search graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
js0mmer committed Nov 3, 2023
1 parent 5fc483b commit 8bbaf4a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file removed site/public/searching.png
Binary file not shown.
Binary file added site/src/asset/searching.webp
Binary file not shown.
3 changes: 2 additions & 1 deletion site/src/component/SearchPopup/SearchPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import "./SearchPopup.scss";
import GradeDist from "../GradeDist/GradeDist";
import Button from "react-bootstrap/Button";
import Carousel from "react-multi-carousel";
import searching from '../../asset/searching.webp'

import { useAppSelector } from "../../store/hooks";
import { selectCourse, selectProfessor } from "../../store/slices/popupSlice";
Expand Down Expand Up @@ -44,7 +45,7 @@ const SearchPopup: FC<SearchPopupProps> = (props) => {
return (
<div className="search-popup">
<div className="search-popup-missing">
<img style={{ width: "100%" }} src="/searching.png" alt="searching" />
<img style={{ width: "80%" }} src={searching} alt="searching" />
<p>Click on a {props.searchType} card to view more information!</p>
</div>
</div>
Expand Down

0 comments on commit 8bbaf4a

Please sign in to comment.