ngx-admin/src/app/pages/modal-overlays/window/window.component.scss
Denis Strigo b1a9a682b8
feat: update to Angular 14 (#5973)
* fix: fix issues after updates to Angular 13 in rooms component and country orders component

* feat: update to Angular 14 (#1)

* fix(angular 13): fix issues after updates to Angular 13 in rooms component and country orders component (#5965)

* feat: update to Angular 14

* feat: update angular eslint packages eslint

* feat: update nebular to 10 version

* feat: update style import, remove ~
2023-03-07 19:26:27 +01:00

38 lines
625 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;
}
}
}