Skip to content

Commit

Permalink
Made minor modifications to text size and colorings
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceeLe committed Jun 28, 2024
1 parent 4827f40 commit c075e61
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion coverage/Navbar.tsx.html
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ <h1><a href="index.html">All files</a> Navbar.tsx</h1>
&lt;/li&gt;
&lt;li&gt;
&lt;NavbarItem
locationTo="/search/academics"
locationTo="/home/academics"
onClick={closeMobileMenu}
title="Home"
image={&lt;IoHomeOutline /&gt;}
Expand Down
6 changes: 3 additions & 3 deletions coverage/SecondNav.tsx.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,13 @@ <h1><a href="index.html">All files</a> SecondNav.tsx</h1>
&lt;div className="shadow-md py-0"&gt;
&lt;ul className="p-2 mx-auto list-none flex items-center justify-around w-3/5 h-full"&gt;
&lt;li&gt;
&lt;SecondNavItem locationTo="/search/academics" title="Academics" /&gt;
&lt;SecondNavItem locationTo="/home/academics" title="Academics" /&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;SecondNavItem locationTo="/search/clubs" title="Clubs" /&gt;
&lt;SecondNavItem locationTo="/home/clubs" title="Clubs" /&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;SecondNavItem locationTo="/search/career" title="Career" /&gt;
&lt;SecondNavItem locationTo="/home/career" title="Career" /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SavedSearches.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const SavedSearchBtn: React.FC<ButtonComponentProps> = ({ content, clickStay, te

return (
<button className={`rounded-full border border-teal px-4 py-1 flex items-center gap-1 ${textSize} ${
clickStay ? "bg-green text-white" : ""}`}>
clickStay ? "bg-teal text-white" : ""}`}>
<span>{content}</span>
<RxCross1 className="h-4 w-3 text-gray-200 ml-3 mr-0.5" />
</button>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ const Search: React.FC<SearchComponentProps> = ({ page }) => {
{/* <div className="w-full mt-2">{actionsMenuComp}</div> */}
<div className="w-full mt-2 flex justify-between">
{/* <Dropdown/> */}
<Button content="Add All" clickStay={false} textSize="text-sm"/>
<Button content="Reset CMUCal Events" clickStay={false} textSize="text-sm"/>
<Button content="Add All" clickStay={false} textSize="text-base"/>
<Button content="Reset CMUCal Events" clickStay={false} textSize="text-base"/>
</div>


Expand Down
Binary file added src/components/icons/CMUCalLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/pages/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useNavigate } from "react-router-dom";
function GoogleSigninButton() {
let navigate = useNavigate();
const routeChange = () =>{
let path = `/search/academics`;
let path = `/home/academics`;
navigate(path);
}

Expand Down

0 comments on commit c075e61

Please sign in to comment.