fix(dashboard): improve dashboard responsiveness

This commit is contained in:
KostyaDanovsky 2017-09-11 19:37:55 +03:00
parent b7a8f6cb15
commit c533cd7d5c
5 changed files with 35 additions and 17 deletions

View file

@ -1,4 +1,6 @@
@import '../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/breakpoints';
@import '~bootstrap/scss/mixins/breakpoints';
@include nb-install-component() {
nb-card-header {
@ -103,10 +105,12 @@
}
nb-action {
padding: 0 0.5rem 0 0;
i {
color: nb-theme(color-fg);
font-size: 2rem;
margin-right: 1rem;
font-size: 3rem;
margin-right: 0.5rem;
}
span {
@ -137,4 +141,16 @@
font-weight: nb-theme(font-weight-bolder);
}
}
@include media-breakpoint-down(lg) {
nb-action {
padding: 0;
i {
margin: 0;
}
span {
display: none;
}
}
}
}