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 {
|
.nav-pills {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
flex: 1 0 auto;
|
flex: 1 0 auto;
|
||||||
@include breakpoint(tablet) {
|
@include breakpoint(tablet) {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
flex-wrap: nowrap;
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
margin: 0 0 0 -10px;
|
margin: 0 0 0 -10px;
|
||||||
|
|
Loading…
Reference in New Issue