Changed to use a dialog to choose which parts are kept when reseting (#1557)

This commit is contained in:
WBHarry 2026-01-21 02:56:47 +01:00 committed by GitHub
parent 3725fc29ef
commit 2aba7cf921
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 179 additions and 22 deletions

View file

@ -0,0 +1,27 @@
.daggerheart.dh-style.dialog.views.character-reset {
.character-reset-container {
display: flex;
flex-direction: column;
gap: 8px;
legend {
padding: 0 4px;
}
.character-reset-header {
font-size: var(--font-size-18);
text-align: center;
}
.reset-data-container {
display: grid;
grid-template-columns: 3fr 2fr;
align-items: center;
gap: 4px;
label {
font-weight: bold;
}
}
}
}

View file

@ -41,3 +41,5 @@
@import './settings/change-currency-icon.less';
@import './risk-it-all/sheet.less';
@import './character-reset/sheet.less';