123456789101112131415161718192021222324252627 |
- <template>
- <div class="workbench"></div>
- </template>
-
- <script>
- export default {};
- </script>
- <style lang="scss" scoped>
- @import '@assets/css/public-style.scss';
- .workbench {
- background: #2c354a;
- height: 100%;
- .list_1x1 {
- width: calc(100% - #{rem(60)});
- height: rem(238);
- }
- .list_1x2 {
- width: calc(100% - #{rem(20)});
- height: rem(238);
- }
- .list_2x2 {
- width: calc(100% - #{rem(20)});
- height: rem(794);
- }
- }
- </style>
-
|