You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

40 lines
472 B

  1. <template>
  2. <div id="app">
  3. <Webbandd/>
  4. </div>
  5. </template>
  6. <script>
  7. import Webbandd from './components/Webbandd.vue'
  8. export default {
  9. name: 'App',
  10. components: {
  11. Webbandd
  12. }
  13. }
  14. </script>
  15. <style>
  16. @import './assets/css/_variables.css';
  17. *{
  18. margin :0;
  19. padding:0;
  20. }
  21. body{
  22. font-family: var(--font-family);
  23. font-size: 2rem;
  24. letter-spacing: 0.1rem;
  25. background-color: var(--main-color);
  26. }
  27. body, html, #app {
  28. margin :0;
  29. padding:0;
  30. }
  31. </style>