mirror of
https://github.com/quantum5/qcal.git
synced 2025-04-24 17:51:57 -04:00
31 lines
437 B
SCSS
31 lines
437 B
SCSS
@import 'bootstrap/scss/functions';
|
|
@import 'bootstrap/scss/variables';
|
|
@import 'bootstrap/scss/mixins';
|
|
@import 'bootstrap/scss/grid';
|
|
|
|
.TimeOfDay {
|
|
@include make-container();
|
|
}
|
|
|
|
.TimeOfDay-Rows {
|
|
@include make-row();
|
|
|
|
> * {
|
|
@include make-col-ready();
|
|
}
|
|
}
|
|
|
|
.TimeOfDay-Style {
|
|
strong::after {
|
|
content: ' ';
|
|
}
|
|
|
|
@include make-col();
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
.TimeOfDay-Rows {
|
|
display: block;
|
|
}
|
|
}
|