Skip to content

Commit

Permalink
fix(navigation-secondary): correction for psuedo details-contents
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroedin committed Nov 22, 2024
1 parent f345f83 commit 5a5cca7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
display: flex;
flex-direction: column;
gap: var(--rh-space-2xl);
height: 100%;
width: -webkit-fill-available;
width: -moz-available;
width: fill-available;
Expand All @@ -110,7 +109,6 @@
padding: 0;
display: flex;
flex-direction: column;
height: 100%;
}
}

Expand All @@ -129,6 +127,11 @@
box-shadow: var(--rh-box-shadow-sm);
}
}

/* stylelint-disable-next-line selector-pseudo-element-no-unknown */
&[open]::details-content {
display: contents;
}
}
}

Expand Down

0 comments on commit 5a5cca7

Please sign in to comment.