Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #473 from tknakatsu/feature/issue-434-fix-overflow…
Browse files Browse the repository at this point in the history
…-scope

.openに指定されたoverflow-x, yをwindow幅$small以上の場合のみに適用
  • Loading branch information
potato4d authored Mar 6, 2020
2 parents d1e053a + 36f0087 commit 062b067
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,11 @@ export default Vue.extend({
}
}
.open {
overflow-x: hidden;
overflow-y: auto;
height: 100vh;
@include largerThan($small) {
overflow-x: hidden;
overflow-y: auto;
}
}
.mainContainer {
grid-column: 2/3;
Expand Down

0 comments on commit 062b067

Please sign in to comment.