We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
반응형 레이아웃으로 브라우저의 max-width 값을 가지고 오버레이 팝업 유무를 판단하게 되는데, scss에서 max-width 값이 아닌 max-height 값을 가지고 판단하기 때문에 데스크탑 화면에서 팝업이 나오지 않게 되는 현상
수정하는 파일 layouts\rx-flextagram\components\nav\nav.scss
#92 라인 수정 @media (max-width: $mobile-w) { display: none; }
#133 라인 수정 @media (max-width: $mobile-w) { display: none; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
반응형 레이아웃으로 브라우저의 max-width 값을 가지고 오버레이 팝업 유무를 판단하게 되는데, scss에서 max-width 값이 아닌 max-height 값을 가지고 판단하기 때문에 데스크탑 화면에서 팝업이 나오지 않게 되는 현상
수정하는 파일
layouts\rx-flextagram\components\nav\nav.scss
#92 라인 수정 @media (max-width: $mobile-w) { display: none; }
#133 라인 수정 @media (max-width: $mobile-w) { display: none; }
The text was updated successfully, but these errors were encountered: