9 lines
203 B
CSS
9 lines
203 B
CSS
@media only screen and (width < 960px) {
|
|
main {
|
|
/* These 16px account for the vertical scrollbar */
|
|
width: calc(100vw - 16px);
|
|
}
|
|
header {
|
|
width: calc(100vw - 16px);
|
|
}
|
|
}
|