Begin playing around with the weapon sheet

This commit is contained in:
Oliver-Akins 2024-04-30 21:31:49 -06:00
parent d1cb412e5a
commit 91c95da639
8 changed files with 256 additions and 4 deletions

View file

@ -6,16 +6,24 @@
border-radius: 4px;
padding: var(--gap);
&.space-between {
justify-content: space-between;
}
&--row {
@extend .panel;
display: flex;
flex-direction: row;
gap: var(--gap);
align-items: center;
}
&.space-between {
justify-content: space-between;
}
&--column {
@extend .panel;
display: flex;
flex-direction: column;
gap: var(--gap);
justify-content: center;
}
}
}