Browse Source

change width to mid-width (#25949)

Adding an upsell in getsentry which needs more room in the selector for the time
Stephen Cefali 3 years ago
parent
commit
61dd891161
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/components/organizations/timeRangeSelector/index.tsx

+ 1 - 1
static/app/components/organizations/timeRangeSelector/index.tsx

@@ -478,7 +478,7 @@ const SelectorList = styled('div')<MenuProps>`
   flex: 1;
   flex-direction: column;
   flex-shrink: 0;
-  width: ${p => (p.isAbsoluteSelected ? '160px' : '220px')};
+  min-width: ${p => (p.isAbsoluteSelected ? '160px' : '220px')};
   min-height: 305px;
 `;