mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui): improved generator text area styling
This commit is contained in:
@@ -33,7 +33,14 @@ export const FloatGeneratorParseStringSettings = memo(({ state, onChange }: Floa
|
||||
</FormControl>
|
||||
<FormControl orientation="vertical">
|
||||
<FormLabel>{t('common.input')}</FormLabel>
|
||||
<Textarea value={state.input} onChange={onChangeInput} rows={7} />
|
||||
<Textarea
|
||||
className="nowheel nodrag nopan"
|
||||
value={state.input}
|
||||
onChange={onChangeInput}
|
||||
p={2}
|
||||
resize="none"
|
||||
rows={5}
|
||||
/>
|
||||
</FormControl>
|
||||
</Flex>
|
||||
);
|
||||
|
||||
@@ -34,7 +34,14 @@ export const IntegerGeneratorParseStringSettings = memo(
|
||||
</FormControl>
|
||||
<FormControl orientation="vertical">
|
||||
<FormLabel>{t('common.input')}</FormLabel>
|
||||
<Textarea value={state.input} onChange={onChangeInput} rows={7} />
|
||||
<Textarea
|
||||
className="nowheel nodrag nopan"
|
||||
value={state.input}
|
||||
onChange={onChangeInput}
|
||||
p={2}
|
||||
resize="none"
|
||||
rows={5}
|
||||
/>
|
||||
</FormControl>
|
||||
</Flex>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user