22 lines
338 B
SCSS
Executable File
22 lines
338 B
SCSS
Executable File
// Miscellaneous
|
|
|
|
*:-moz-full-screen,
|
|
*:-webkit-full-screen,
|
|
*:fullscreen *:-ms-full-screen {
|
|
overflow: auto;
|
|
}
|
|
|
|
|
|
pre {
|
|
background-color: color(gray-lighter);
|
|
padding: 15px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
code {
|
|
padding: 5px;
|
|
font-family: $font-family-sans-serif;
|
|
font-weight: 400;
|
|
font-size: $font-size-base;
|
|
border-radius: 4px;
|
|
} |