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

@ -566,8 +566,33 @@ i.lethalfantasy {
}
.lethalfantasy .tab.character-spells .spells .spell {
display: flex;
align-items: center;
gap: 10px;
}
.lethalfantasy .tab.character-spells .spells .spell .item-img {
width: 32px;
height: 32px;
}
.lethalfantasy .tab.character-spells .spells .spell .name {
min-width: 12rem;
}
.lethalfantasy .tab.character-spells .miracles {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.lethalfantasy .tab.character-spells .miracles .miracle {
display: flex;
align-items: center;
gap: 10px;
}
.lethalfantasy .tab.character-spells .miracles .miracle .item-img {
width: 32px;
height: 32px;
}
.lethalfantasy .tab.character-spells .miracles .miracle .name {
min-width: 12rem;
}
.lethalfantasy .tab.character-spells .appris {
font-weight: bold;
}