mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-15 04:42:23 +08:00
33 lines
510 B
SCSS
33 lines
510 B
SCSS
@import './fonts/Lato.scss';
|
|
@import './theme/default.scss';
|
|
@import './Detachable.scss';
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: $default-font-family;
|
|
min-width: 1280px;
|
|
background: $body-background-color;
|
|
color: $primary-text-color;
|
|
}
|
|
|
|
a {
|
|
color: $primary-text-color;
|
|
}
|
|
|
|
input {
|
|
font-family: $default-font-family;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.n-detached-content-container {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 0;
|
|
overflow: visible;
|
|
}
|
|
|
|
.n-detached-content {
|
|
position: fixed;
|
|
} |