iconSelector.scss 631 B

12345678910111213141516171819202122232425262728293031
  1. /* Popover 弹出框(图标选择器)
  2. ------------------------------- */
  3. .icon-selector-popper {
  4. padding: 0 !important;
  5. .icon-selector-warp {
  6. height: 260px;
  7. overflow: hidden;
  8. position: relative;
  9. .icon-selector-warp-title {
  10. position: absolute;
  11. height: 40px;
  12. line-height: 40px;
  13. left: 15px;
  14. }
  15. .el-tabs__header {
  16. display: flex;
  17. justify-content: flex-end;
  18. padding: 0 15px;
  19. border-bottom: 1px solid var(--el-border-color-light);
  20. margin: 0 !important;
  21. .el-tabs__nav-wrap {
  22. &::after {
  23. height: 0 !important;
  24. }
  25. .el-tabs__item {
  26. padding: 0 5px !important;
  27. }
  28. }
  29. }
  30. }
  31. }