24 lines
503 B
SCSS
24 lines
503 B
SCSS
@import './element-variables.scss';
|
|
@import './transition.scss';
|
|
|
|
// @font-face {
|
|
// font-family: 'element-icons';
|
|
// src: url('./element-icons.woff') format('woff'), /* chrome, firefox */
|
|
// url('./element-icons.ttf') format('truetype'); /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
|
|
// font-weight: normal;
|
|
// // font-display: $--font-display;
|
|
// font-style: normal;
|
|
// }
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|