Skip to content

Commit

Permalink
fix(VExpansionPanel): single panel has missing border radius (#16020)
Browse files Browse the repository at this point in the history
fixes #16019
  • Loading branch information
jacekkarczmarczyk committed Nov 4, 2022
1 parent bc68dba commit b9124ef
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -41,11 +41,11 @@
border-top-left-radius: 0 !important
border-top-right-radius: 0 !important

> :first-child:not(.v-expansion-panel--active):not(.v-expansion-panel--before-active)
> :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active)
border-bottom-left-radius: 0 !important
border-bottom-right-radius: 0 !important

> :last-child:not(.v-expansion-panel--active):not(.v-expansion-panel--after-active)
> :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active)
border-top-left-radius: 0 !important
border-top-right-radius: 0 !important

Expand Down

0 comments on commit b9124ef

Please sign in to comment.