1234567891011121314151617181920212223242526272829 |
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- width: 100%;
- height: 100%;
- }
- :root {
- --van-button-primary-background-color: red;
- }
- body{
- background-color: #F2F3F5;
- }
- #nav {
- padding: 30px;
- a {
- font-weight: bold;
- color: #2c3e50;
- &.router-link-exact-active {
- color: #42b983;
- }
- }
- }
|