Add D30, spells, miracles and ranged defense roll

This commit is contained in:
2025-01-05 22:14:44 +01:00
parent dbd27b837f
commit 5fc40b2b18
39 changed files with 460 additions and 81 deletions

View File

@ -476,7 +476,33 @@
gap: 10px;
.spell {
display: flex;
align-items: center;
gap: 10px;
.item-img {
width: 32px;
height: 32px;
}
.name {
min-width: 12rem;
}
}
}
.miracles {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
.miracle {
display: flex;
align-items: center;
gap: 10px;
.item-img {
width: 32px;
height: 32px;
}
.name {
min-width: 12rem;
}
}
}