1234567891011121314151617181920212223 |
- @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 {
- margin-top: -4px;
- width: 14px;
- }
- }
- .icon-button:hover {
- background: darken(@theme_bg_color, 10);
- }
|