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

@ -0,0 +1,13 @@
@use "../../../mixins/material";
@use "../../../mixins/utils";
.dotdungeon.style-v3 .item--weapon-v1 {
@include utils.tab("details") {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
.full-width {
grid-column: 1 / -1;
}
}
}