Files
edx-platform/lms/static/sass/course/_tabs.scss
Adam Butterworth 307cb30208 Swap deprecated box-sizing mixin with the box-sizing property (#23928)
* Swap deprecated box-sizing mixin with the box-sizing property

* Linting now that box-sizing is no longer a mixin
2020-05-08 11:27:51 -04:00

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;
}
}