stable-diffusion-webui
stable-diffusion-webui copied to clipboard
[Feature Request]: Extra Networks cards size change
Is there an existing issue for this?
- [X] I have searched the existing issues and checked the recent builds/commits
What would your feature do ?
Extra Networks cards size change
I confirmed that there is a function to change to a thumbs rather than a card in the settings. However, there is a problem that the size is too small when changed to thumbs Can't add a function to change the card size in settings?
Proposed workflow
- Go to Settings tab -> Extra Networks -> Default view for Extra Networks
Additional information
No response
You can change the card size by putting sth like this in the file user.css:
.extra-network-cards .card{
width: 12em !important;
height: 12em !important;
}
.extra-network-cards .card .actions .name{
font-size: 1em !important;
}
(this will set them to 12em squared, and make the label font smaller; experiment with the numbers!)
@schumar
thx! i am also using the CSS after modifying it. i raised the issue because I thought it would be better to change it in setting check PR #7936, if PR is merged close this Issue thx!