fix: overlay-switch-media-query (#11819)

This commit is contained in:
sean-brydon 2023-10-11 23:58:35 +01:00 committed by GitHub
parent 833fe7c7b7
commit 0e50f6d9f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,11 @@ export function OverlayCalendarContainer() {
return (
<>
<div className={classNames("hidden gap-2", layout === "week_view" ? "lg:flex" : "md:flex")}>
<div
className={classNames(
"hidden gap-2",
layout === "week_view" || layout === "column_view" ? "xl:flex" : "md:flex"
)}>
<div className="flex items-center gap-2 pr-2">
<Switch
data-testid="overlay-calendar-switch"