2019-12-22 15:31:04 +08:00
|
|
|
@import './fonts/FiraCode.scss';
|
2019-12-28 13:46:37 +08:00
|
|
|
@import './fonts/FiraSans.scss';
|
2020-02-11 14:44:29 +08:00
|
|
|
@import './themes/common.scss';
|
2019-12-20 16:59:37 +08:00
|
|
|
@import './themes/light/index.scss';
|
2020-02-11 17:19:00 +08:00
|
|
|
@import './mixins/mixins.scss';
|
|
|
|
|
2020-03-04 23:38:19 +08:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: $--n-font-family;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
font-family: $--n-font-family;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include b(positioning-container) {
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
transform: translateZ(0);
|
|
|
|
@include b(positioning-content) {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include b(modal-content) {
|
|
|
|
@include b(positioning-container) {
|
|
|
|
position: absolute;
|
2020-03-06 16:13:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include b(drawer) {
|
|
|
|
@include b(positioning-container) {
|
|
|
|
position: absolute;
|
2020-02-11 17:19:00 +08:00
|
|
|
}
|
2019-05-24 20:09:35 +08:00
|
|
|
}
|