mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
26 lines
459 B
SCSS
26 lines
459 B
SCSS
#npc{
|
|
max-width:500px;
|
|
display:flex;
|
|
flex-direction: column;
|
|
gap:var(--half-gap);
|
|
h3{
|
|
text-align:left;
|
|
}
|
|
.repeating-container{
|
|
grid-template-columns:1fr 60px;
|
|
grid-template-rows:auto 1fr;
|
|
grid-template-areas:
|
|
'header buttons'
|
|
'repeat repeat';
|
|
h3{
|
|
grid-area:header;
|
|
}
|
|
.repcontrol_edit,
|
|
.repcontrol-button--add{
|
|
grid-area:buttons;
|
|
}
|
|
.repcontainer{
|
|
grid-area:repeat;
|
|
}
|
|
}
|
|
} |