feat: 🎸 1. 新增scss居中函数,2.修改styles的less文件命名

This commit is contained in:
vintonhuang 2022-08-22 10:34:51 +08:00
parent 6f4e6b8e42
commit 4a8617aa2e
3 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import router from '/@/router';
import store from '/@/store';
import './assets/font/iconfont.css';
import './assets/app.css';
import 'amfe-flexible';
// import 'amfe-flexible';
const app = createApp(App);

View File

@ -14,3 +14,10 @@
}
}
}
@mixin center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}