blob: a607846df2b0eaacc96e803a4ca197eae4bc80d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.calendarBox-interactive,
.calendarBox {
display: flex;
width: 100%;
height: 100%;
transform-origin: top left;
overflow: auto;
> div {
pointer-events: none;
width: 100%;
height: 100%;
.fc-timegrid-body {
width: 100% !important;
table {
width: 100% !important;
}
}
.fc-col-header {
width: 100% !important;
}
.fc-daygrid-body {
width: 100% !important;
.fc-scrollgrid-sync-table {
width: 100% !important;
}
}
}
}
.calendarBox-interactive {
> div {
pointer-events: unset;
}
}
|