Skip to content

Commit 0e5fe3a

Browse files
fix: pixel fix for slightly offset action bar labels.
1 parent 9b9a52d commit 0e5fe3a

File tree

3 files changed

+4
-71
lines changed

3 files changed

+4
-71
lines changed

invokeai/frontend/web/src/features/controlLayers/components/CanvasEntityList/EntityListSelectedEntityActionBarCompositeOperation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const EntityListSelectedEntityActionBarCompositeOperation = memo(() => {
5757

5858
return (
5959
<FormControl w="min-content" gap={2}>
60-
<FormLabel m={0} whiteSpace="nowrap">
60+
<FormLabel m={0} mt={1} whiteSpace="nowrap">
6161
{t('controlLayers.compositeOperation.label')}
6262
</FormLabel>
6363
<Select value={currentOperation} onChange={onChange} size="sm" variant="outline" minW="110px">

invokeai/frontend/web/src/features/controlLayers/components/CanvasEntityList/EntityListSelectedEntityActionBarOpacity.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ export const EntityListSelectedEntityActionBarOpacity = memo(() => {
132132
return (
133133
<Popover>
134134
<FormControl w="min-content" gap={2} isDisabled={selectedEntityIdentifier === null}>
135-
<FormLabel m={0}>{t('controlLayers.opacity')}</FormLabel>
135+
<FormLabel m={0} mt={1}>
136+
{t('controlLayers.opacity')}
137+
</FormLabel>
136138
<PopoverAnchor>
137139
<NumberInput
138140
display="flex"

invokeai/frontend/web/src/features/controlLayers/components/RasterLayer/RasterLayerCompositeOperationSettings.tsx

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)