Demo:去掉文字平滑样式,避免在mac电脑上文字看不清的问题;所有弹窗增加圆角

This commit is contained in:
wanglin2
2025-04-20 09:49:54 +08:00
parent 670114d8d8
commit e0dc13c9f8

View File

@@ -10,7 +10,7 @@ export default {
}
</script>
<style>
<style lang="less">
* {
margin: 0;
padding: 0;
@@ -18,8 +18,6 @@ export default {
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
@@ -41,4 +39,8 @@ export default {
display: none;
}
}
.el-dialog{
border-radius: 10px;
}
</style>