Skip to content

Commit

Permalink
OEL-2784: Fixed multiselect overflow. (#572)
Browse files Browse the repository at this point in the history
[skip chromatic]

Co-authored-by: Tiberiu Dumitru <[email protected]>
  • Loading branch information
tibi2303 and tibi2303 authored Feb 7, 2024
1 parent 097a326 commit b4066b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/themes/default/src/scss/_multiselect.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ select.multi-select {
font-weight: $badge-font-weight;
line-height: 1;
color: $badge-color;
text-align: center;
white-space: nowrap;
text-align: left;
white-space: normal;
vertical-align: baseline;
padding-right: map-get($spacers, "3-5");
@include border-radius($badge-border-radius);
Expand All @@ -61,14 +61,14 @@ select.multi-select {
content: "";
display: inline-block;
height: 1rem;
transform: scale(0.8);
transform: scale(0.8) translateY(50%);
width: 1rem;
padding: 15px;
background-position: 50%;
border-radius: 50%;
position: absolute;
right: 0;
bottom: -2px;
bottom: calc(50% - 3px);
}
}
}
Expand Down

1 comment on commit b4066b8

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.