Skip to content

Commit

Permalink
fix(fluidtextinput): hide scrollbar on label overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tay1orjones committed Oct 21, 2022
1 parent 11dbd38 commit 2076207
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,16 @@
height: rem(16px);
align-items: center;
margin: 0;
-ms-overflow-style: none;
overflow-x: scroll;
scrollbar-width: none;
white-space: nowrap;
}

.#{$prefix}--text-input--fluid .#{$prefix}--label::-webkit-scrollbar {
display: none;
}

.#{$prefix}--text-input--fluid .#{$prefix}--form__helper-text {
display: none;
}
Expand Down

0 comments on commit 2076207

Please sign in to comment.