vue3 中原本的main.css 对样式的限制比较多,这里分享一下我自用的main.css
@import './base.css';
* {
margin: 0;
padding: 0;
list-style:none;
}
#app {
text-align: center;
font-weight: normal;
color: #2c3e50;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}