diff options
author | Florian Horn <florianins@gmail.com> | 2022-10-27 14:38:55 +0000 |
---|---|---|
committer | Florian Horn <florianins@gmail.com> | 2022-10-27 14:38:55 +0000 |
commit | bf25b51c3167426d3a340d2a3facea58813d4914 (patch) | |
tree | dfe68b728281915190b206459541926913c4f28e | |
parent | 268159cfe3231743c554a1a9bf15d090c758f920 (diff) | |
download | stable-diffusion-webui-gfx803-bf25b51c3167426d3a340d2a3facea58813d4914.tar.gz stable-diffusion-webui-gfx803-bf25b51c3167426d3a340d2a3facea58813d4914.tar.bz2 stable-diffusion-webui-gfx803-bf25b51c3167426d3a340d2a3facea58813d4914.zip |
fixed position to be in line with the other icons
-rw-r--r-- | style.css | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -314,7 +314,7 @@ input[type="range"]{ .modalControls {
display: grid;
- grid-template-columns: 32px auto 32px 1fr 32px;
+ grid-template-columns: 32px 32px 32px 1fr 32px;
grid-template-areas: "zoom tile save space close";
position: absolute;
top: 0;
@@ -352,8 +352,8 @@ input[type="range"]{ .modalSave {
color: white;
- font-size: 30px;
- margin-top: 6px;
+ font-size: 28px;
+ margin-top: 8px;
font-weight: bold;
cursor: pointer;
}
|