Skip to content

Commit

Permalink
fix: Add border radius to list inside popover (#3739)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKMarkowski committed Nov 5, 2020
1 parent 0947372 commit d28c61c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions libs/core/src/lib/popover/popover.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,22 @@ $fd-popover-background-color: var(--sapGroup_ContentBackground, #fff) !default;
.fd-popover__popper.fd-popover__popper--cdk-custom {
position: relative;
width: 100%;

.fd-list {
border-radius: 0.25rem;

.fd-list__item {
&:first-child {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}

&:last-child {
border-bottom-left-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
}
}
}

.fd-popover-custom {
Expand Down

0 comments on commit d28c61c

Please sign in to comment.