Skip to content

Commit

Permalink
fix(phone-number): fix flag shadow in select
Browse files Browse the repository at this point in the history
  • Loading branch information
skhamvon authored and dpellier committed Dec 11, 2023
1 parent 83ccc56 commit e433e9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
@import '~@ovhcloud/ods-common-theming/ods-theme';

:host(.phone-number) {
--ods-select-option-overflow: visible;

display: inline-flex;
}

Expand Down Expand Up @@ -40,7 +42,7 @@ $phone-number-input-width: 236px;
width: 24px;
}
}

&.opened + .phone-number__input {
border-bottom-right-radius: 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.option > .truncated {
min-width: 0;
overflow: hidden;
overflow: var(--ods-select-option-overflow, hidden);
text-overflow: ellipsis;
white-space: nowrap;
word-break: break-all;
Expand Down

0 comments on commit e433e9b

Please sign in to comment.