Wrap long lists of admin tabs on large screens
This commit is contained in:
parent
4ccf9d28eb
commit
593cd831e1
|
@ -26,10 +26,12 @@ $mobile-breakpoint: 700px;
|
|||
|
||||
.nav-pills {
|
||||
display: inline-flex;
|
||||
flex-wrap: wrap;
|
||||
width: calc(100% - 10px);
|
||||
flex: 1 0 auto;
|
||||
@include breakpoint(tablet) {
|
||||
white-space: nowrap;
|
||||
flex-wrap: nowrap;
|
||||
overflow-x: scroll;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
margin: 0 0 0 -10px;
|
||||
|
|
Loading…
Reference in New Issue