fix(tabs): tabs responsive

This commit is contained in:
Mikhail Hryb 2017-09-11 11:41:44 +03:00 committed by KostyaDanovsky
parent 74a4de29fc
commit 6bd9ee6c6b

View file

@ -1,4 +1,6 @@
@import '../../../@theme/styles/themes'; @import '../../../@theme/styles/themes';
@import '~bootstrap/scss/mixins/breakpoints';
@import '~@nebular/theme/styles/global/bootstrap/breakpoints';
@include nb-install-component() { @include nb-install-component() {
nb-tabset { nb-tabset {
@ -15,4 +17,11 @@
display: block; display: block;
padding: nb-theme(padding); padding: nb-theme(padding);
} }
@include media-breakpoint-down(xs) {
nb-tabset /deep/ul {
font-size: 1rem;
padding: 0 0.2rem;
}
}
} }