mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-18 11:53:04 -05:00
feat(ui): wip resizable pinnable drawer
fix(ui): remove old scrollbar css fix(ui): make guidepopover lazy feat(ui): wip resizable drawer feat(ui): wip resizable drawer feat(ui): add scroll-linked shadow feat(ui): organize files Align Scrollbar next to content Move resizable drawer underneath the progress bar Add InvokeLogo to unpinned & align Adds Invoke Logo to Unpinned Parameters panel and aligns to make it feel seamless.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { VStack } from '@chakra-ui/react';
|
||||
import ImageFit from 'features/parameters/components/AdvancedParameters/ImageToImage/ImageFit';
|
||||
import ImageToImageStrength from 'features/parameters/components/AdvancedParameters/ImageToImage/ImageToImageStrength';
|
||||
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
export default function ImageToImageSettings() {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<VStack gap={2} alignItems="stretch">
|
||||
<ImageToImageStrength label={t('parameters.img2imgStrength')} />
|
||||
<ImageFit />
|
||||
</VStack>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user