diff --git a/static/app/components/organizations/pageFilterBar.tsx b/static/app/components/organizations/pageFilterBar.tsx index 8bed29355f5cbb..d5708c11d80fda 100644 --- a/static/app/components/organizations/pageFilterBar.tsx +++ b/static/app/components/organizations/pageFilterBar.tsx @@ -37,7 +37,7 @@ const PageFilterBar = styled('div')<{condensed?: boolean}>` } & > * { - min-width: 7rem; + min-width: 0; flex-grow: 1; flex-shrink: 1; flex-basis: max-content; @@ -50,6 +50,11 @@ const PageFilterBar = styled('div')<{condensed?: boolean}>` flex-shrink: 1; } } + + /* Prevent date filter from shrinking below 6.5rem */ + &:last-child { + min-width: 6.5rem; + } } & > *:not(:first-child)::after {