소스 검색

fix: edge case causing horizontal scrollbar

Prevent horizontal scrollbar in case of 100vw grid applied to page with vertical scrollbar.

Fix f851142
Fix #1976
George Cushen 4 년 전
부모
커밋
58c7dd7a0a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      wowchemy/assets/scss/wowchemy/_root.scss

+ 1 - 1
wowchemy/assets/scss/wowchemy/_root.scss

@@ -24,7 +24,7 @@ body {
   padding-top: 0;
   counter-reset: captions;
   // Prevent horizontal scrollbar in case of 100vw grid applied to page with vertical scrollbar.
-  overflow: hidden;
+  overflow-x: hidden;
 }
 @include media-breakpoint-down(md) { /* Match max-width of .nav-bar query. */
   body {