27 lines
389 B
SCSS
27 lines
389 B
SCSS
// LMS base styles
|
|
|
|
// removing the outline on any element that we make programmatically focusable
|
|
[tabindex="-1"] {
|
|
outline: none;
|
|
}
|
|
|
|
.window-wrap {
|
|
background-color: $body-bg;
|
|
}
|
|
|
|
.content-wrapper {
|
|
@include span(12, none);
|
|
|
|
margin: 0 auto;
|
|
|
|
@media print {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
// Support .sr as well as .sr-only for backward compatibility
|
|
.sr {
|
|
@extend .sr-only;
|
|
}
|
|
|