Browse Source

style(replays): only overflow accessibiliy & network tabs when necessary (#62945)

Fixes https://github.com/getsentry/sentry/issues/62829
Michelle Zhang 1 year ago
parent
commit
158b379b09

+ 1 - 1
static/app/views/replays/detail/accessibility/details/components.tsx

@@ -41,7 +41,7 @@ export function keyValueTableOrNotFound(data: KeyValueTuple[], notFoundText: str
 }
 
 const ValueContainer = styled('span')`
-  overflow: scroll;
+  overflow: auto;
 `;
 
 const SectionTitle = styled('dt')``;

+ 1 - 1
static/app/views/replays/detail/network/details/components.tsx

@@ -70,7 +70,7 @@ export function keyValueTableOrNotFound(data: KeyValueTuple[], notFoundText: str
 }
 
 const ValueContainer = styled('span')`
-  overflow: scroll;
+  overflow: auto;
 `;
 
 const SectionTitle = styled('dt')``;