Skip to content

Commit

Permalink
fix(Select): fix selectControl height & bg hover style (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marginy605 authored Jun 29, 2023
1 parent 6d5d9db commit f2fa9e9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ $blockButton: '.#{variables.$ns-new}select-control__button';
display: inline-flex;
align-items: center;
box-sizing: border-box;
transition: transform 0.1s ease-out, color 0.15s linear, background-color 0.15s linear;
transition: transform 0.1s ease-out;
width: 100%;
z-index: 0;

&_size_s {
@include block_control(s);
Expand All @@ -113,6 +114,8 @@ $blockButton: '.#{variables.$ns-new}select-control__button';
display: inline-flex;
overflow: hidden;
width: 100%;
height: 100%;
transition: color 0.15s linear, background-color 0.15s linear;

&::before {
content: '';
Expand Down

0 comments on commit f2fa9e9

Please sign in to comment.