diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-09-09 06:29:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 06:29:42 +0000 |
commit | 4ebed495ed692fbd88b0b6f13670eab69faeca8c (patch) | |
tree | ede52c11931f20dc9028d8a9b152ca7c0ca3267b /style.css | |
parent | e6d41b54cd6975d313bb5dadb0d21de4ccaf9821 (diff) | |
parent | 76b1ad7daf35f8667e07ff9cff9ef42b828b1b83 (diff) | |
download | stable-diffusion-webui-gfx803-4ebed495ed692fbd88b0b6f13670eab69faeca8c.tar.gz stable-diffusion-webui-gfx803-4ebed495ed692fbd88b0b6f13670eab69faeca8c.tar.bz2 stable-diffusion-webui-gfx803-4ebed495ed692fbd88b0b6f13670eab69faeca8c.zip |
Merge pull request #12880 from AUTOMATIC1111/dropdown-padding-mobile
Use default dropdown padding on mobile
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -83,8 +83,10 @@ div.compact{ white-space: nowrap;
}
-.gradio-dropdown ul.options li.item {
- padding: 0.05em 0;
+@media (pointer:fine) {
+ .gradio-dropdown ul.options li.item {
+ padding: 0.05em 0;
+ }
}
.gradio-dropdown ul.options li.item.selected {
|