mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-17 03:04:27 +00:00
24 lines
356 B
SCSS
24 lines
356 B
SCSS
@mixin rating-state(
|
|
$color
|
|
) {
|
|
#{$rating-icon-prefix} {
|
|
color: $color;
|
|
}
|
|
}
|
|
|
|
@mixin rating-size(
|
|
$icon-size,
|
|
$text-size,
|
|
$text-margin-left
|
|
) {
|
|
font-size: $text-size;
|
|
|
|
#{$rating-icon-prefix} {
|
|
@include icon-size($icon-size);
|
|
}
|
|
|
|
#{$rating-prefix}-text {
|
|
margin-left: $text-margin-left;
|
|
}
|
|
}
|