UNPKG

701 BSCSSView Raw
1/**
2 * Miscs
3 */
4
5// Reboot based on :
6// - normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
7// - sanitize.css v13.0.0 | CC0 1.0 Universal | github.com/csstools/sanitize.css
8// ––––––––––––––––––––
9
10// 1. Correct the inheritance of border color in Firefox
11// 2. Add the correct box sizing in Firefox
12hr {
13 height: 0; // 2
14 border: 0;
15 border-top: 1px solid var(--muted-border-color);
16 color: inherit; // 1
17}
18
19// Add the correct display in IE 10+
20[hidden],
21template {
22 @if $enable-important {
23 display: none !important;
24 }
25 @else {
26 display: none;
27 }
28}
29
30// Add the correct display in IE 9-
31canvas {
32 display: inline-block;
33}