Skip to content

Commit

Permalink
changed color of apply button
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylin-chung committed Mar 2, 2024
1 parent 00c0795 commit 662c136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MenuBar/ButtonBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import LinkNoStyle from '../LinkNoStyle/LinkNoStyle.js';
import { applicationOpen, applyDeadline } from '../constants.js';

const useStyles = makeStyles(theme => {
// const menuBarAdaptiveThreshold = theme.breakpoints.values.sm * 1.3;
const menuBarAdaptiveThreshold = theme.breakpoints.values.sm * 1.3;

Check failure on line 9 in src/components/MenuBar/ButtonBar.js

View workflow job for this annotation

GitHub Actions / eslint

'menuBarAdaptiveThreshold' is assigned a value but never used
return {
link: {
fontWeight: 500,
Expand Down Expand Up @@ -41,7 +41,7 @@ const useStyles = makeStyles(theme => {
applyLink: {
fontFamily: theme.typography.fontFamily,
fontWeight: 600,
backgroundColor: theme.palette.primary.main,
backgroundColor: theme.palette.secondary.main,
margin: props => props.isMobile ? '10px auto 0' : '0 25px 0 0',
padding: '7px 20px',
borderRadius: '20px',
Expand Down

0 comments on commit 662c136

Please sign in to comment.