fix: overlay-switch-media-query (#11819)
parent
833fe7c7b7
commit
0e50f6d9f8
|
@ -104,7 +104,11 @@ export function OverlayCalendarContainer() {
|
||||||
|
|
||||||
return (
|
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">
|
<div className="flex items-center gap-2 pr-2">
|
||||||
<Switch
|
<Switch
|
||||||
data-testid="overlay-calendar-switch"
|
data-testid="overlay-calendar-switch"
|
||||||
|
|
Loading…
Reference in New Issue