29 lines
528 B
SCSS

/// CHILL ENTITY RENDER BOX
.chill-entity {
/// PERSON
&.entity-person {
span.firstname,
span.lastname,
span.altname {}
}
/// SOCIAL-ISSUE
&.entity-social-issue {
margin-right: 0.3em;
font-size: 120%;
span.badge {
@include badge_social_issue;
}
}
/// SOCIAL-ACTION
&.entity-social-action {
margin-right: 0.3em;
font-size: 120%;
span.badge {
@include badge_social_action;
}
}
}