custom-component.scss 347 B

123456789101112131415161718192021
  1. @use './variables.scss' as *;
  2. .custom-tooltip {
  3. width: 200cpx;
  4. max-height: 200cpx;
  5. overflow-y: auto;
  6. }
  7. .customDialog--pushObject {
  8. height: 60vh;
  9. border-radius: 8px !important;
  10. .el-dialog__body {
  11. display: flex;
  12. flex-direction: column;
  13. gap: 10px;
  14. width: 100%;
  15. height: calc(100% - 50px);
  16. overflow-y: auto;
  17. }
  18. }