added SD Gen buttons

This commit is contained in:
RossAscends
2023-05-08 02:42:06 +09:00
parent abb4ca95b3
commit ae09768c69
2 changed files with 129 additions and 0 deletions

View File

@@ -1,3 +1,30 @@
.sd_settings label {
display: block;
}
#sd_gen {
order: 100;
width: 40px;
height: 40px;
margin: 0;
padding: 1px;
outline: none;
border: none;
cursor: pointer;
transition: 0.3s;
opacity: 0.7;
display: flex;
align-items: center;
justify-content: center;
}
#sd_gen:hover {
opacity: 1;
filter: brightness(1.2);
}
#sd_dropdown {
z-index: 100;
backdrop-filter: blur(--SmartThemeBlurStrength);
}