mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
18 lines
205 B
SCSS
18 lines
205 B
SCSS
/* Reset
|
|
=============== */
|
|
|
|
// Reset box sizing to border box
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
// Remove figure margin
|
|
figure {
|
|
margin: 0;
|
|
} |