From c8720f18ec27dc14012b39f1129420109ca6a1b3 Mon Sep 17 00:00:00 2001 From: Mia Hsu Date: Wed, 4 Dec 2024 15:11:02 -0800 Subject: [PATCH] fix(crons): fix check-in env styling --- .../monitors/components/overviewTimeline/overviewRow.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/static/app/views/monitors/components/overviewTimeline/overviewRow.tsx b/static/app/views/monitors/components/overviewTimeline/overviewRow.tsx index 7921eed9f8a0de..eef91478be8297 100644 --- a/static/app/views/monitors/components/overviewTimeline/overviewRow.tsx +++ b/static/app/views/monitors/components/overviewTimeline/overviewRow.tsx @@ -171,7 +171,8 @@ export function OverviewRow({ const {name, isMuted} = env; return ( - + ( - ); })} @@ -347,6 +347,10 @@ const MonitorEnvContainer = styled('div')` text-align: right; `; +const EnvDropdown = styled(DropdownMenu)` + text-align: left; +`; + const EnvRow = styled('div')` display: flex; gap: ${space(0.5)};