Get SD samplers from API (#2889)

This commit is contained in:
missionfloyd 2023-06-27 14:31:54 -06:00 committed by GitHub
parent d7a7f7896b
commit cb029cf65f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 6 deletions

View file

@ -2,6 +2,32 @@
.SDAP #sampler_box {
padding-top: var(--spacing-sm);
padding-bottom: var(--spacing-sm);
border: 0;
}
.SDAP #steps_box {
border-radius: 0 0 var(--block-radius) var(--block-radius);
}
.SDAP #sampler_col {
gap: 0;
padding: 0;
background-color: transparent;
}
.SDAP #sampler_row {
border-bottom: 0;
box-shadow: var(--block-shadow);
border-width: var(--block-border-width);
border-color: var(--block-border-color);
border-radius: var(--block-radius) var(--block-radius) 0 0;
background: var(--block-background-fill);
gap: 0;
}
.SDAP #sampler_row .refresh-button {
margin-bottom: var(--spacing-sm);
margin-right: var(--spacing-lg);
}
.SDAP #seed_box,
@ -11,7 +37,8 @@
.SDAP #sampler_box span,
.SDAP #seed_box span,
.SDAP #cfg_box span{
.SDAP #cfg_box span,
.SDAP #steps_box span {
margin-bottom: var(--spacing-sm);
}