mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-19 07:46:09 +01:00
46 lines
952 B
SCSS
46 lines
952 B
SCSS
@import '~bootstrap/scss/mixins/breakpoints';
|
|
@import '~@nebular/theme/styles/global/breakpoints';
|
|
@import '../../../@theme/styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
.calendars {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: -1rem -0.5rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.calendar-container {
|
|
margin: 1rem 0.5rem;
|
|
}
|
|
|
|
.subtitle {
|
|
display: block;
|
|
font-family: nb-theme(text-subtitle-font-family);
|
|
font-size: nb-theme(text-subtitle-font-size);
|
|
font-weight: nb-theme(text-subtitle-font-weight);
|
|
line-height: nb-theme(text-subtitle-line-height);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
@include media-breakpoint-up(md) {
|
|
.calendars {
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
.calendars {
|
|
margin: -1.1rem;
|
|
}
|
|
.calendar-container {
|
|
margin: 1rem;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(xxxl) {
|
|
.calendars {
|
|
margin: -1rem;
|
|
}
|
|
}
|
|
}
|