Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Responsive web design breakpoint 변경하기 #29

Open
1 task
donghakang opened this issue Jun 26, 2023 · 0 comments
Open
1 task

Responsive web design breakpoint 변경하기 #29

donghakang opened this issue Jun 26, 2023 · 0 comments
Assignees
Labels
💄style Add or update the UI and style files.

Comments

@donghakang
Copy link
Contributor

donghakang commented Jun 26, 2023

요구 사항

  • RWD 에서 breakpoint 를 변경하기

기존방식

export const screen = {
  /* Extra small devices (phones, 600px and down) */
  xs: '@media only screen and (max-width: 600px)',

  /* Small devices (portrait tablets and large phones, 600px and up) */
  s: '@media only screen and (min-width: 600px)',

  /* Medium devices (landscape tablets, 768px and up) */
  m: '@media only screen and (min-width: 768px)',

  /* Large devices (laptops/desktops, 992px and up) */
  l: '@media only screen and (min-width: 992px)',

  /* Extra large devices (large laptops and desktops, 1200px and up) */
  xl: '@media only screen and (min-width: 1200px)',

  /** All Devices  */
  phone: '@media only screen and (max-width: 768px)',
  monitor: '@media only screen and (min-width: 768px)'
};

변경방법

phone: 360px ~ 767px
tablet: 768px ~ 1439px
desktop: 1440px ~

@donghakang donghakang added the 💄style Add or update the UI and style files. label Jun 26, 2023
@donghakang donghakang self-assigned this Jun 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💄style Add or update the UI and style files.
Projects
None yet
Development

No branches or pull requests

1 participant