Skip to content

Commit

Permalink
fix(tabstrip): scrollable tabstrip should not wrap items
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Jan 11, 2022
1 parent 4d32dce commit 5be3a4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/default/scss/tabstrip/_layout.scss
Expand Up @@ -19,7 +19,7 @@
color: inherit;
background-color: transparent;
display: flex;
flex-direction: column;
flex-flow: column nowrap;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: $rgba-transparent;

Expand Down Expand Up @@ -125,6 +125,7 @@

> .k-tabstrip-items {
flex: 1 1 auto;
flex-wrap: nowrap;
white-space: nowrap;
overflow: hidden;
}
Expand Down

0 comments on commit 5be3a4c

Please sign in to comment.