Skip to content

Commit

Permalink
Fix: media small 기준 수정 #13
Browse files Browse the repository at this point in the history
피그마 디자인에 맞추어 small 화면 기준 390px로 수정
  • Loading branch information
devhaeun committed Jan 27, 2025
1 parent d87f452 commit bbd666f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styles/media.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { css, type CSSObject, type Interpolation } from 'styled-components';
export type Breakpoints = 'small' | 'medium' | 'large' | 'notLarge';

export const breakpoints: Record<Breakpoints, string> = {
small: '@media (max-width: 375px)',
small: '@media (max-width: 390px)',
medium: '@media (max-width: 744px)',
large: '@media (min-width: 745px)',
notLarge: '@media not all and (min-width: 745px)',
Expand Down

0 comments on commit bbd666f

Please sign in to comment.