amis2/scss/base/_reset.scss

19 lines
200 B
SCSS
Raw Normal View History

2019-04-30 11:11:25 +08:00
/* Reset
=============== */
// Reset box sizing to border box
html {
2019-12-06 09:58:08 +08:00
box-sizing: border-box;
2019-04-30 11:11:25 +08:00
}
*,
*::before,
*::after {
2019-12-06 09:58:08 +08:00
box-sizing: inherit;
2019-04-30 11:11:25 +08:00
}
// Remove figure margin
figure {
2019-12-06 09:58:08 +08:00
margin: 0;
}