Get the base Actor sheet working w/ collaboration

This commit is contained in:
Oliver-Akins 2024-08-28 22:36:12 -06:00
parent 60b0072bcc
commit ce9c2de751
18 changed files with 320 additions and 22 deletions

View file

@ -0,0 +1,42 @@
.actor--player.style-v1 {
--header-size: 75px;
form {
display: flex;
flex-direction: column;
gap: 8px;
}
.header-row {
display: flex;
flex-direction: row;
border-radius: 4px;
border: 1px solid var(--color-underline-header);
}
.avatar {
--size: var(--header-size);
width: var(--size);
height: var(--size);
border: none;
border-right: 1px solid var(--color-underline-header);
}
.actor-name {
height: var(--header-size);
padding: 8px 1rem;
font-size: clamp(1rem, 2rem, calc(var(--header-size) - 16px));
border: none;
}
prose-mirror {
--menu-background: rgba(0, 0, 0, 0.1);
flex-grow: 1;
border: 1px solid var(--color-underline-header);
border-radius: 4px;
.editor-container {
height: auto;
}
}
}