mirror of
https://github.com/picocss/pico.git
synced 2025-04-23 01:46:14 -04:00
30 lines
595 B
SCSS
30 lines
595 B
SCSS
![]() |
/**
|
|||
|
* Miscs
|
|||
|
*/
|
|||
|
|
|||
|
|
|||
|
// Reboot
|
|||
|
// Based on normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
|
|||
|
// ––––––––––––––––––––
|
|||
|
|
|||
|
// 1. Add the correct box sizing in Firefox.
|
|||
|
// 2. Show the overflow in Edge and IE.
|
|||
|
hr {
|
|||
|
box-sizing: content-box; // 1
|
|||
|
height: 0; // 1
|
|||
|
overflow: visible; // 2
|
|||
|
border: none;
|
|||
|
border-top: 1px solid var(--muted-border);
|
|||
|
}
|
|||
|
|
|||
|
// Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|||
|
progress {
|
|||
|
vertical-align: baseline;
|
|||
|
}
|
|||
|
|
|||
|
// Add the correct display in IE 10+.
|
|||
|
[hidden],
|
|||
|
template {
|
|||
|
display: none;
|
|||
|
}
|