mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
29 lines
528 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|