Skip to content

Commit

Permalink
fix grid issue with xp earned (#183)
Browse files Browse the repository at this point in the history
Fixes: #182
  • Loading branch information
zkat authored Jun 9, 2024
1 parent 8327018 commit ecc15e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/Other Features/Settings.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Iron Vault includes various settings for tweaking the behavior of its features, to allow you to shape it into a better tool for your use case.
braIron Vault includes various settings for tweaking the behavior of its features, to allow you to shape it into a better tool for your use case.
### General

* **Use character system**: when enabled, this will look for an active [[Characters|Character]] file when making moves and doing other game operations. If disabled, Iron Vault will still work, but will prompt you for values of, for example, your stats. This is a good setting to disable if you only wish to use a particular subset of Iron Vault features, like [[Mechanics Blocks]] or the [[Sidebar]] but don't really care to use the various [[About Commands|Commands]].
Expand Down
6 changes: 2 additions & 4 deletions src/characters/css/character-info.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,12 @@
grid-area: 1 / 1 / 2 / 2;
}
}
& dt:has(+ .description),
& dd.description {
grid-column: 1 / span 2;
}
& dt:has(+ .description) {
grid-column: 1 / span 2;
grid-row-start: 3;
}
& dd.description {
grid-column: 1 / span 2;
grid-row-start: 4;
}
& dd.xp-earned {
Expand Down

0 comments on commit ecc15e0

Please sign in to comment.