Get the actor sheet read/writing the character's aspect data
This commit is contained in:
parent
19a59692c4
commit
340f80c5b9
18 changed files with 342 additions and 230 deletions
44
styles/sheets/partials/panel.scss
Normal file
44
styles/sheets/partials/panel.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue