Skip to content

Commit

Permalink
cleanup logo
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccahongsf committed Oct 23, 2024
1 parent af54d5f commit 32c1a82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/Logo/Logo.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const bar = 'hidden sm:block w-1 h-1em mx-03em';
export const text = 'text-15 sm:text-[1.05em] mt-03em -ml-01em sm:ml-0';
export const textColor = {
default: 'text-black',
white: 'text-white',
black: 'text-black-60',
};
export const barColor = {
default: 'bg-black',
Expand Down
4 changes: 2 additions & 2 deletions app/components/Logo/LogoLockup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as styles from './Logo.styles';
type LogoLockupProps = {
text: string;
isLink?: boolean;
color?: 'default' | 'white';
color?: 'default' | 'black';
className?: string;
}

Expand All @@ -30,7 +30,7 @@ export const LogoLockup = ({
const LockupContent = (
<FlexBox className={styles.contentWrapper}>
<StanfordLogo
color={color === 'white' ? 'white' : 'cardinal-red'}
color={color === 'black' ? 'black' : 'cardinal-red'}
isLink={false}
className={cnb(styles.logo)}
/>
Expand Down

0 comments on commit 32c1a82

Please sign in to comment.