mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 17:00:13 +01:00
39 lines
627 B
SCSS
39 lines
627 B
SCSS
|
|
@import '~bootstrap/scss/mixins/breakpoints';
|
||
|
|
@import '~@nebular/theme/styles/global/breakpoints';
|
||
|
|
|
||
|
|
@import '../../../@theme/styles/themes';
|
||
|
|
|
||
|
|
@include nb-install-component() {
|
||
|
|
button + button {
|
||
|
|
margin-left: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
@include media-breakpoint-down(xxl) {
|
||
|
|
nb-card-body {
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
flex: 1;
|
||
|
|
padding: 0.8rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@include media-breakpoint-down(is) {
|
||
|
|
nb-card-body {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
+ button {
|
||
|
|
margin-left: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
padding: 0.75rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|