index.module.less 583 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .panel-wrapper {
  2. position: relative;
  3. }
  4. .variable-panel-button {
  5. position: absolute;
  6. top: 0;
  7. right: 0;
  8. border-radius: 50%;
  9. width: 50px;
  10. height: 50px;
  11. z-index: 1;
  12. &.close {
  13. width: 30px;
  14. height: 30px;
  15. top: 10px;
  16. right: 10px;
  17. }
  18. }
  19. .panel-container {
  20. width: 500px;
  21. border-radius: 5px;
  22. background-color: #fff;
  23. overflow: hidden;
  24. box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  25. z-index: 30;
  26. :global(.semi-tabs-bar) {
  27. padding-left: 20px;
  28. }
  29. :global(.semi-tabs-content) {
  30. padding: 20px;
  31. height: 500px;
  32. overflow: auto;
  33. }
  34. }