index.less 366 B

12345678910111213141516171819202122
  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. width: 14px;
  15. }
  16. }
  17. .icon-button:hover {
  18. background: darken(@theme_bg_color, 10);
  19. }