mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 13:11:08 +01:00
Minor fixes and tweaks for the party sheet
This commit is contained in:
parent
a3f079d111
commit
0d048fca3f
3 changed files with 3 additions and 2 deletions
|
|
@ -675,7 +675,6 @@ export default class DhCharacter extends BaseDataActor {
|
||||||
}
|
}
|
||||||
|
|
||||||
_getTags() {
|
_getTags() {
|
||||||
const tags = [this.class.value.name, this.class.subclass.name, this.community.name, this.ancestry.name];
|
return [this.class.value?.name, this.class.subclass?.name, this.community?.name, this.ancestry?.name].filter((t) => !!t);
|
||||||
return tags;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,7 @@
|
||||||
|
|
||||||
&.actor-img {
|
&.actor-img {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
object-position: top center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ body.game:is(.performance-low, .noblur) {
|
||||||
.actor-img {
|
.actor-img {
|
||||||
height: 150px;
|
height: 150px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
object-position: top center;
|
||||||
border-radius: 6px 6px 0px 0px;
|
border-radius: 6px 6px 0px 0px;
|
||||||
mask-image: linear-gradient(180deg, black 88%, transparent 100%);
|
mask-image: linear-gradient(180deg, black 88%, transparent 100%);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue