mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
19 lines
337 B
SCSS
19 lines
337 B
SCSS
// scss/components/feedback/template-rating.module.scss
|
|
|
|
.templateRating {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--spacing-1);
|
|
}
|
|
|
|
.stars {
|
|
color: var(--color-warning);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.score {
|
|
font-size: var(--font-size-sm);
|
|
color: var(--color-text-secondary);
|
|
font-weight: var(--font-weight-medium);
|
|
}
|