Fix extra border on accounts in settings page (#38168)

This commit is contained in:
diondiondion
2026-03-12 11:19:06 +01:00
committed by GitHub
parent 4552cda15a
commit 13c94db9e7

View File

@@ -2010,7 +2010,9 @@ body > [data-popper-placement] {
.account {
padding: 16px;
&:not(&--without-border) {
// Using :where keeps specificity low, allowing for existing
// .account overrides to still apply
&:where(:not(&--without-border)) {
border-bottom: 1px solid var(--color-border-primary);
}