Doubled width of soft-nested borders

This commit is contained in:
adroslice 2023-11-13 20:04:03 +01:00
parent 9f58657855
commit 3b0d4fcdaf
2 changed files with 4 additions and 3 deletions

View file

@ -57,8 +57,9 @@ function tallyChildren(routes: NavRoute[]) {
<style scoped> <style scoped>
.nav-dropdown-body { .nav-dropdown-body {
max-height: 0px; max-height: 0px;
border-left: 1px solid white; border-left: 2px solid var(--cl-fg);
padding-left: calc(0.5rem - 1px); backdrop-filter: brightness(75%);
padding-left: calc(0.5rem - 2px);
} }
span { span {

View file

@ -43,7 +43,7 @@ input {
padding: 0px; /* To keep alignment, no padding is needed for those descendants */ padding: 0px; /* To keep alignment, no padding is needed for those descendants */
} }
:is(form, .form) :is(form, .form) > .inner-form { /* Soft-Nesting for Subform and EnumInput */ :is(form, .form) :is(form, .form) > .inner-form { /* Soft-Nesting for Subform and EnumInput */
border-left: 1px solid var(--cl-fg); border-left: 2px solid var(--cl-fg);
padding-left: 0.5rem; padding-left: 0.5rem;
} }
:is(form, .form) > :is(button, .button, h1, h2, h3, h4, h5, h6) { :is(form, .form) > :is(button, .button, h1, h2, h3, h4, h5, h6) {