Skip to content

Commit

Permalink
imporve last feature class names
Browse files Browse the repository at this point in the history
  • Loading branch information
ammar-faifi committed Nov 22, 2023
1 parent 13dde77 commit 9b97878
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pages/Notifier.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -799,16 +799,14 @@ function Notifier(props) {
></Form.Control>

<ToggleButton
variant=""
onClick={() => setGradCourses(!gradCourses)}
className={
(gradCourses
? styles["search_btn"] + " " + styles["search_btn_checked"]
: styles["search_btn"]) +
" " +
(user.theme === M.DARK ? styles["dark-toggle-btn"] : "")
}
className={`${styles["search_btn"]} ${
gradCourses ? styles["search_btn_checked"] : ""
} ${user.theme === M.DARK ? styles["dark-toggle-btn"] : ""}`}
type="checkbox"
checked={gradCourses}
id="grad-toggle-btn"
>
<FaGraduationCap size={20} />
</ToggleButton>
Expand Down
1 change: 1 addition & 0 deletions styles/notifier-page/courses-list.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ $txt-hg: #0091e7;
width: 50px;
&:hover {
background-color: #13988a !important;
color: white !important;
}
}

Expand Down

1 comment on commit 9b97878

@vercel
Copy link

@vercel vercel bot commented on 9b97878 Nov 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.