mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-04-30 14:19:01 +08:00
29 lines
541 B
SCSS
29 lines
541 B
SCSS
html {
|
||
font-size: 4px; // * 1rem = 4px 方便unocss计算:在unocss中 1字体单位 = 0.25rem,相当于 1等份 = 1px
|
||
}
|
||
|
||
html,
|
||
body {
|
||
width: 100%;
|
||
height: 100%;
|
||
overflow: hidden;
|
||
background-color: #f2f2f2;
|
||
font-family: 'Encode Sans Condensed', sans-serif;
|
||
}
|
||
|
||
/* router view transition fade-slide */
|
||
.fade-slide-leave-active,
|
||
.fade-slide-enter-active {
|
||
transition: all 0.3s;
|
||
}
|
||
|
||
.fade-slide-enter-from {
|
||
opacity: 0;
|
||
transform: translateX(-30px);
|
||
}
|
||
|
||
.fade-slide-leave-to {
|
||
opacity: 0;
|
||
transform: translateX(30px);
|
||
}
|