Get the actor sheet read/writing the character's aspect data

This commit is contained in:
Oliver-Akins 2023-12-16 23:47:07 -07:00
parent 19a59692c4
commit 340f80c5b9
18 changed files with 342 additions and 230 deletions

View file

@ -0,0 +1,44 @@
@use "../../mixins/breakpoints" as *;
@use "../../mixins/foundry" as *;
@use "../../vars" as *;
.dotdungeon .panel {
display: grid;
grid-template-rows: min-content 1fr;
border: 2px solid black;
background: greenyellow;
&__header {
background: black;
color: white;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 4px;
padding: 0 4px;
h2 {
@include fvtt_reset;
color: inherit;
flex-grow: 1;
font-family: $title-font;
font-size: 20px;
}
.icon {
$size: 20px;
height: $size;
width: $size;
aspect-ratio: 1/1;
}
}
}
@include bp-s {
.dotdungeon .panel__header .icon {
display: none;
visibility: hidden;
}
}

View file

@ -4,6 +4,7 @@
justify-content: center;
align-items: center;
width: 100%;
gap: 8px;
&-group {
display: flex;