* Swap deprecated box-sizing mixin with the box-sizing property * Linting now that box-sizing is no longer a mixin
18 lines
228 B
SCSS
18 lines
228 B
SCSS
div.static_tab_wrapper {
|
|
box-sizing: border-box;
|
|
padding: 2em 2.5em;
|
|
|
|
h1 {
|
|
@extend .top-header;
|
|
}
|
|
|
|
section {
|
|
margin: 0 0 20px;
|
|
}
|
|
|
|
@media print {
|
|
border: 0;
|
|
background: transparent !important;
|
|
}
|
|
}
|