10 lines
288 B
CSS
10 lines
288 B
CSS
/* Force Day Planner columns to fit the available width */
|
|
.day-planner-multi-day-view .day-planner-column {
|
|
min-width: 0 !important;
|
|
flex: 1 1 0 !important;
|
|
}
|
|
|
|
/* Ensure the container doesn't overflow */
|
|
.day-planner-multi-day-view {
|
|
overflow-x: hidden !important;
|
|
} |