12345678910111213141516171819202122 |
- @import '../../app.less';
- .icon-button {
- width: 24px;
- height: 24px;
- background: @theme_bg_color;
- text-align: center;
- display: inline-block;
- vertical-align: middle;
- transition: all 0.25s;
- border-radius: 2px;
- line-height: 24px;
- cursor: pointer;
- .assets {
- width: 14px;
- }
- }
- .icon-button:hover {
- background: darken(@theme_bg_color, 10);
- }
|