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

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