♻️ Change overflow:scroll to overflow:auto
This commit is contained in:
@@ -71,7 +71,7 @@ const LogCard = ({ log }: { log: Log }) => {
|
||||
</AccordionButton>
|
||||
<AccordionPanel
|
||||
as="pre"
|
||||
overflow="scroll"
|
||||
overflow="auto"
|
||||
borderWidth="1px"
|
||||
borderRadius="md"
|
||||
>
|
||||
|
||||
@@ -232,7 +232,7 @@ export const ResultsTable = ({
|
||||
</HStack>
|
||||
<Box
|
||||
ref={tableWrapper}
|
||||
overflow="scroll"
|
||||
overflow="auto"
|
||||
rounded="md"
|
||||
data-testid="results-table"
|
||||
backgroundImage={`linear-gradient(to right, ${background}, ${background}), linear-gradient(to right, ${background}, ${background}),linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0)),linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0));`}
|
||||
|
||||
@@ -68,13 +68,7 @@ const TableSettingsMenu = ({
|
||||
switch (selectedMenu) {
|
||||
case 'columnSettings':
|
||||
return (
|
||||
<PopoverBody
|
||||
as={Stack}
|
||||
spacing="4"
|
||||
p="4"
|
||||
maxH="450px"
|
||||
overflowY="scroll"
|
||||
>
|
||||
<PopoverBody as={Stack} spacing="4" p="4" maxH="450px" overflowY="auto">
|
||||
<ColumnSettings
|
||||
resultHeader={resultHeader}
|
||||
columnVisibility={columnVisibility}
|
||||
|
||||
Reference in New Issue
Block a user