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;
}
}
}

View file

@ -21,6 +21,7 @@
@use "./layouts/datasheet.scss";
@use "./layouts/items/common.scss";
@use "./layouts/items/untyped/v2.scss";
@use "./layouts/items/weapon/v1.scss";
/* Sheet Options */
.dotdungeon.style-v3 {

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;
}
}
}