2023-05-25 17:25:11 -04:00
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
.button {
|
2024-03-25 13:34:36 -04:00
|
|
|
@extend %button;
|
|
|
|
// uses scalable value since it's a text element
|
|
|
|
min-height: to_em(22px);
|
|
|
|
|
|
|
|
// default style
|
|
|
|
&.default {
|
|
|
|
@extend %default_button;
|
|
|
|
}
|
|
|
|
// flat style
|
|
|
|
&.flat {
|
|
|
|
@extend %flat_button;
|
|
|
|
}
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-button {
|
2024-03-25 13:34:36 -04:00
|
|
|
@extend %button;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius; // is circular
|
|
|
|
padding: $scaled_padding * 2;
|
|
|
|
min-height: $scalable_icon_size;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
|
|
|
StIcon {
|
2024-03-25 13:34:36 -04:00
|
|
|
icon-size: $scalable_icon_size;
|
2023-05-25 17:25:11 -04:00
|
|
|
-st-icon-style: symbolic;
|
|
|
|
}
|
2024-03-25 13:34:36 -04:00
|
|
|
|
|
|
|
// default style
|
|
|
|
&.default {
|
|
|
|
@extend %default_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
// flat style
|
|
|
|
&.flat {
|
|
|
|
@extend %flat_button;
|
|
|
|
}
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|