mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): adjust seed param styling
This commit is contained in:
parent
8e90f9024d
commit
00e69d5d12
@ -88,7 +88,7 @@ const ParamMainModelSelect = () => {
|
|||||||
data={[]}
|
data={[]}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Flex w="100%" alignItems="center" gap={2}>
|
<Flex w="100%" alignItems="center" gap={3}>
|
||||||
<IAIMantineSearchableSelect
|
<IAIMantineSearchableSelect
|
||||||
tooltip={selectedModel?.description}
|
tooltip={selectedModel?.description}
|
||||||
label={t('modelManager.model')}
|
label={t('modelManager.model')}
|
||||||
|
@ -32,11 +32,6 @@ export default function ParamSeed() {
|
|||||||
isInvalid={seed < 0 && shouldGenerateVariations}
|
isInvalid={seed < 0 && shouldGenerateVariations}
|
||||||
onChange={handleChangeSeed}
|
onChange={handleChangeSeed}
|
||||||
value={seed}
|
value={seed}
|
||||||
formControlProps={{
|
|
||||||
display: 'flex',
|
|
||||||
alignItems: 'center',
|
|
||||||
gap: 3, // really this should work with 2 but seems to need to be 3 to match gap 2?
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import ParamSeedRandomize from './ParamSeedRandomize';
|
|||||||
|
|
||||||
const ParamSeedFull = () => {
|
const ParamSeedFull = () => {
|
||||||
return (
|
return (
|
||||||
<Flex sx={{ gap: 4, alignItems: 'center' }}>
|
<Flex sx={{ gap: 3, alignItems: 'flex-end' }}>
|
||||||
<ParamSeed />
|
<ParamSeed />
|
||||||
<ParamSeedShuffle />
|
<ParamSeedShuffle />
|
||||||
<ParamSeedRandomize />
|
<ParamSeedRandomize />
|
||||||
|
Loading…
Reference in New Issue
Block a user