index.vue 742 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div class="home">
  3. <leftDesk></leftDesk>
  4. <reightDesk></reightDesk>
  5. </div>
  6. </template>
  7. <script setup>
  8. import leftDesk from './index/leftDesk.vue'
  9. import reightDesk from './index/reightDesk.vue'
  10. </script>
  11. <style lang="scss">
  12. .home {
  13. position: relative;
  14. width: 100%;
  15. height: 100vh;
  16. padding-top: 45px;
  17. }
  18. .color-cyan {
  19. background-color: rgb(88, 240, 222);
  20. }
  21. .color-yellow {
  22. background-color: rgb(242, 179, 39);
  23. }
  24. .color-blue {
  25. background-color: rgb(76, 155, 255);
  26. }
  27. .color-red {
  28. background-color: rgb(239, 93, 57);
  29. }
  30. .text-cyan {
  31. color: rgb(88, 240, 222);
  32. }
  33. .text-yellow {
  34. color: rgb(242, 179, 39);
  35. }
  36. .text-blue {
  37. color: rgb(76, 155, 255);
  38. }
  39. .text-red {
  40. color: rgb(239, 93, 57);
  41. }
  42. </style>