消毒机前端代码
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.

33 lines
642 B

2 years ago
  1. <template>
  2. <div class="operator_main_content">
  3. <div class="left_contaienr"></div>
  4. <div class="right_container"></div>
  5. </div>
  6. </template>
  7. <script setup></script>
  8. <style lang="scss" scoped>
  9. .operator_main_content {
  10. margin-bottom: 30px;
  11. height: 580px;
  12. box-sizing: border-box;
  13. display: flex;
  14. align-items: center;
  15. .left_contaienr {
  16. margin-right: 30px;
  17. width: 766px;
  18. height: 580px;
  19. box-sizing: border-box;
  20. border-radius: 16px;
  21. background: #ffffff;
  22. }
  23. .right_container {
  24. height: 580px;
  25. box-sizing: border-box;
  26. border-radius: 16px;
  27. background: #ffffff;
  28. flex: 1;
  29. }
  30. }
  31. </style>