|
66 | 66 |
|
67 | 67 | <div> |
68 | 68 | <div class="row justify-content-between "> |
69 | | - <div class="col-xs-12 col-sm-5 col-md-5 custom-left-buttons-group"> |
| 69 | + <div class="col-xs-12 col-sm-4 col-md-5 custom-left-buttons-group"> |
70 | 70 | <div class="btn-group" role="group" aria-label="Move date"> |
71 | 71 | <button |
72 | 72 | mwlCalendarPreviousView |
73 | 73 | type="button" |
74 | 74 | [(view)]="calendarView" |
75 | 75 | [(viewDate)]="currentDate" |
76 | | - class="btn btn-light btn-block m-0" |
| 76 | + class="btn btn-navigation btn-light btn-block m-0" |
77 | 77 | (click)="handleChangeDateEvent()" |
78 | 78 | > |
79 | 79 | Previous |
|
83 | 83 | [ngClass]="{ active: isToday }" |
84 | 84 | type="button" |
85 | 85 | [(viewDate)]="currentDate" |
86 | | - class="btn btn-light btn-block m-0" |
| 86 | + class="btn btn-navigation btn-light btn-block m-0" |
87 | 87 | (click)="handleChangeDateEvent()" |
88 | 88 | > |
89 | 89 | Today |
|
93 | 93 | type="button" |
94 | 94 | [(view)]="calendarView" |
95 | 95 | [(viewDate)]="currentDate" |
96 | | - class="btn btn-light btn-block m-0" |
| 96 | + class="btn btn-navigation btn-light btn-block m-0" |
97 | 97 | (click)="handleChangeDateEvent()" |
98 | 98 | [disabled]="nextDateDisabled" |
99 | 99 | > |
|
102 | 102 | </div> |
103 | 103 | </div> |
104 | 104 | <div class="col-xs-12 col-sm-2 col-md-2 text-center currentDate"> |
105 | | - <p class="font-weight-bold h4"> |
| 105 | + <p class="font-weight-bold h5"> |
106 | 106 | {{ currentDate | date: 'EEEE' }} |
107 | 107 | </p> |
108 | 108 | <P class="h5"> |
|
114 | 114 | <button |
115 | 115 | [ngClass]="{ active: isVisibleForCurrentView(calendarView, [CALENDAR_VIEW_ENUM.Month]) }" |
116 | 116 | type="button" |
117 | | - class="btn btn-light btn-block m-0" |
| 117 | + class="btn btn-navigation btn-light btn-block m-0" |
118 | 118 | (click)="changeCalendarView(CALENDAR_VIEW_ENUM.Month)" |
119 | 119 | > |
120 | 120 | Month |
121 | 121 | </button> |
122 | 122 | <button |
123 | 123 | [ngClass]="{ active: isVisibleForCurrentView(calendarView, [CALENDAR_VIEW_ENUM.Week]) }" |
124 | 124 | type="button" |
125 | | - class="btn btn-light btn-block m-0" |
| 125 | + class="btn btn-navigation btn-light btn-block m-0" |
126 | 126 | (click)="changeCalendarView(CALENDAR_VIEW_ENUM.Week)" |
127 | 127 | > |
128 | 128 | Week |
129 | 129 | </button> |
130 | 130 | <button |
131 | 131 | [ngClass]="{ active: isVisibleForCurrentView(calendarView, [CALENDAR_VIEW_ENUM.Day]) }" |
132 | 132 | type="button" |
133 | | - class="btn btn-light btn-block m-0" |
| 133 | + class="btn btn-navigation btn-light btn-block m-0" |
134 | 134 | (click)="changeCalendarView(CALENDAR_VIEW_ENUM.Day)" |
135 | 135 | > |
136 | 136 | Day |
|
0 commit comments