Spaces:
Runtime error
Runtime error
File size: 748 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
@import '@spark-design/css/components/button/index.css';
.spark-button-start-slot {
display: flex;
}
.spark-button-size-s {
.button-icon {
height: var(--spark-button-s-line-height);
width: var(--spark-button-s-line-height);
}
}
.spark-button-size-m {
.button-icon {
height: var(--spark-button-m-line-height);
width: var(--spark-button-m-line-height);
}
}
.spark-button-size-l {
.button-icon {
height: var(--spark-button-l-line-height);
width: var(--spark-button-l-line-height);
}
}
.spark-button-action {
.button-icon {
fill: var(--spark-button-action-color);
}
}
.spark-button-disabled {
.button-icon {
fill: var(--spark-button-disabled-color);
}
}
|