菜单宽度调整
菜单阴影去除
字体调整
在app.vue
中加入
@font-face {
font-family: 'MyFont';
src: url('@/assets/KoiFont-D8fBFwAi.woff2') format('truetype'); /* 也可以是其他格式,如 'woff', 'woff2' */
font-weight: normal;
font-style: normal;
}
* {
font-family: 'MyFont', sans-serif;
font-weight: 200;
}
打开标签优化
除去右侧滚动条
去除源码地址
圆角头像
调整弹窗底部距离
在app.vue
中加入
<style>
.el-dialog {
margin-bottom: 6vh;
}
</style>