index.vue 507 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="workbench"></div>
  3. </template>
  4. <script>
  5. export default {};
  6. </script>
  7. <style lang="scss" scoped>
  8. @import '@assets/css/public-style.scss';
  9. .workbench {
  10. background: #2c354a;
  11. height: 100%;
  12. .list_1x1 {
  13. width: calc(100% - #{rem(60)});
  14. height: rem(238);
  15. }
  16. .list_1x2 {
  17. width: calc(100% - #{rem(20)});
  18. height: rem(238);
  19. }
  20. .list_2x2 {
  21. width: calc(100% - #{rem(20)});
  22. height: rem(794);
  23. }
  24. }
  25. </style>