Change prompt variant section background color (#97)

* Change backgroundColor of variant editor section

* Move refresh control out of scrollable area
This commit is contained in:
arcticfly
2023-07-26 10:51:23 -07:00
committed by GitHub
parent d4fb8b689a
commit 566d67bf48
4 changed files with 24 additions and 17 deletions

View File

@@ -10,8 +10,10 @@ export const CellContent = ({
hardRefetch: () => void;
hardRefetching: boolean;
} & StackProps) => (
<VStack maxH={500} w="full" overflowY="auto" alignItems="flex-start" {...props}>
<VStack w="full" alignItems="flex-start" {...props}>
<CellOptions refetchingOutput={hardRefetching} refetchOutput={hardRefetch} />
{children}
<VStack w="full" alignItems="flex-start" maxH={500} overflowY="auto">
{children}
</VStack>
</VStack>
);