main.scss 446 B

1234567891011121314151617181920212223242526272829
  1. #app {
  2. font-family: Avenir, Helvetica, Arial, sans-serif;
  3. -webkit-font-smoothing: antialiased;
  4. -moz-osx-font-smoothing: grayscale;
  5. text-align: center;
  6. color: #2c3e50;
  7. width: 100%;
  8. height: 100%;
  9. }
  10. :root {
  11. --van-button-primary-background-color: red;
  12. }
  13. body{
  14. background-color: #F2F3F5;
  15. }
  16. #nav {
  17. padding: 30px;
  18. a {
  19. font-weight: bold;
  20. color: #2c3e50;
  21. &.router-link-exact-active {
  22. color: #42b983;
  23. }
  24. }
  25. }