1
0
Fork 0

lint(gui): outline generate buttons

This commit is contained in:
Sean Sube 2023-01-19 17:34:35 -06:00
parent f1484dc075
commit 137a5a84cc
4 changed files with 4 additions and 4 deletions

View File

@ -63,7 +63,7 @@ export function Img2Img() {
}} }}
/> />
<UpscaleControl /> <UpscaleControl />
<Button onClick={() => upload.mutate()}>Generate</Button> <Button variant='outlined' onClick={() => upload.mutate()}>Generate</Button>
</Stack> </Stack>
</Box>; </Box>;
} }

View File

@ -161,7 +161,7 @@ export function Inpaint() {
</Stack> </Stack>
<OutpaintControl /> <OutpaintControl />
<UpscaleControl /> <UpscaleControl />
<Button onClick={() => upload.mutate()}>Generate</Button> <Button variant='outlined' onClick={() => upload.mutate()}>Generate</Button>
</Stack> </Stack>
</Box>; </Box>;
} }

View File

@ -65,7 +65,7 @@ export function Txt2Img() {
/> />
</Stack> </Stack>
<UpscaleControl /> <UpscaleControl />
<Button onClick={() => generate.mutate()}>Generate</Button> <Button variant='outlined' onClick={() => generate.mutate()}>Generate</Button>
</Stack> </Stack>
</Box>; </Box>;
} }

View File

@ -46,7 +46,7 @@ export function Upscale() {
}); });
}} /> }} />
<UpscaleControl /> <UpscaleControl />
<Button onClick={() => upload.mutate()}>Generate</Button> <Button variant='outlined' onClick={() => upload.mutate()}>Generate</Button>
</Stack> </Stack>
</Box>; </Box>;
} }