Remove fieldset

This commit is contained in:
Carlos Fernandez 2026-03-12 18:07:03 -04:00
parent 514ee13d9a
commit dd376705a9
3 changed files with 133 additions and 136 deletions

View file

@ -565,64 +565,11 @@
}
.application.setting.dh-style {
fieldset {
h2,
h3,
h4 {
margin: 8px 0 4px;
text-align: center;
}
.title-hint {
font-size: var(--font-size-12);
font-variant: small-caps;
text-align: center;
}
.field-section {
display: flex;
flex-direction: column;
gap: 10px;
.split-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
> label {
grid-column: span 2;
text-align: center;
font-size: var(--font-size-18);
font-weight: bold;
}
}
}
.label-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
&.full-width {
grid-template-columns: 1fr 1fr 1fr 1fr;
select {
grid-column: span 3;
}
}
label {
align-self: center;
text-align: center;
white-space: nowrap;
}
}
.button-container {
display: grid;
align-items: center;
justify-content: space-between;
width: 100%;
}
h2,
h3,
h4 {
margin: 8px 0 4px;
text-align: center;
}
footer {

View file

@ -1,6 +1,14 @@
.daggerheart.dh-style.setting.appearance-settings {
.tab.active[data-tab="diceSoNice"] {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.diceSoNice-footer {
display: grid;
align-items: center;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 8px;
margin-top: 32px;
@ -13,4 +21,49 @@
grid-column: span 2;
}
}
.title-hint {
font-size: var(--font-size-12);
font-variant: small-caps;
text-align: center;
}
.split-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
> label {
grid-column: span 2;
text-align: center;
font-size: var(--font-size-18);
font-weight: bold;
}
}
.field-section {
display: flex;
flex-direction: column;
gap: 10px;
}
.label-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
&.full-width {
grid-template-columns: 1fr 1fr 1fr 1fr;
select {
grid-column: span 3;
}
}
label {
align-self: center;
text-align: center;
white-space: nowrap;
}
}
}