index.less 388 B

1234567891011121314151617181920212223
  1. @import '../../app.less';
  2. .icon-button {
  3. width: 24px;
  4. height: 24px;
  5. background: @theme_bg_color;
  6. text-align: center;
  7. display: inline-block;
  8. vertical-align: middle;
  9. transition: all 0.25s;
  10. border-radius: 2px;
  11. line-height: 24px;
  12. cursor: pointer;
  13. .assets {
  14. margin-top: -4px;
  15. width: 14px;
  16. }
  17. }
  18. .icon-button:hover {
  19. background: darken(@theme_bg_color, 10);
  20. }