Skip to content

Commit 5fa6ea9

Browse files
committed
fix: keep skills from overflow-y'ing
1 parent 62fb00a commit 5fa6ea9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/Viewport.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,25 @@ div.bin {
2020
margin: 0 auto;
2121
box-sizing: border-box; /* Include padding and border in dimensions */
2222
23-
width: 8.5in; /* US Letter width */
24-
height: 11in; /* US Letter height */
25-
2623
overflow-y: hidden;
2724
overflow-x: hidden;
2825
}
2926
@media screen {
3027
div.bin {
3128
margin: 50px auto;
29+
30+
width: 8.5in;
31+
height: 11.7in;
3232
}
3333
}
3434
3535
@media print {
3636
div.bin {
3737
margin: 0px 0px;
3838
border: 0px 0px;
39+
40+
width: 8.5in;
41+
height: 11in;
3942
}
4043
}
4144
</style>

0 commit comments

Comments
 (0)