File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11
11
position : relative ;
12
12
z-index : 1 ;
13
13
14
-
15
14
& :after {
16
15
clear : both ;
17
16
content : ' ' ;
355
354
356
355
/* .bs-datepicker-multiple */
357
356
& -multiple {
358
- display : inline-block ;
359
357
border-radius : 4px 0 0 4px ;
360
358
361
359
& + & {
396
394
padding : 15px ;
397
395
}
398
396
397
+ .bs-media-container {
398
+ display : flex ;
399
+ @media (max-width : 768px ) {
400
+ flex-direction : column ;
401
+ }
402
+ }
403
+
399
404
/* .bs-datepicker-custom-range */
400
405
& -custom-range {
401
406
padding : 15px ;
Original file line number Diff line number Diff line change 5
5
<!--calendars-->
6
6
< div class ="bs-calendar-container " [ngSwitch] ="viewMode | async " role ="application ">
7
7
<!--days calendar-->
8
- < div *ngSwitchCase ="'day' ">
8
+ < div *ngSwitchCase ="'day' " class =" bs-media-container " >
9
9
< bs-days-calendar-view
10
10
*ngFor ="let calendar of (daysCalendar | async) "
11
11
[class.bs-datepicker-multiple] ="(daysCalendar | async)?.length > 1 "
19
19
</ div >
20
20
21
21
<!--months calendar-->
22
- < div *ngSwitchCase ="'month' ">
22
+ < div *ngSwitchCase ="'month' " class =" bs-media-container " >
23
23
< bs-month-calendar-view
24
24
*ngFor ="let calendar of (monthsCalendar | async) "
25
25
[class.bs-datepicker-multiple] ="(daysCalendar | async)?.length > 1 "
32
32
</ div >
33
33
34
34
<!--years calendar-->
35
- < div *ngSwitchCase ="'year' ">
35
+ < div *ngSwitchCase ="'year' " class =" bs-media-container " >
36
36
< bs-years-calendar-view
37
37
*ngFor ="let calendar of (yearsCalendar | async) "
38
38
[class.bs-datepicker-multiple] ="(daysCalendar | async )?.length > 1 "
You can’t perform that action at this time.
0 commit comments