mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-06-12 04:48:12 +02:00
Fixing the popup position on larger screens
Fixing the popup position on larger screens; Smaller screens still get the current rendering experience.
This commit is contained in:
parent
47f7c938ae
commit
a68ebd2b76
@ -706,7 +706,7 @@ input::file-selector-button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.popup {
|
.popup {
|
||||||
position: fixed;
|
position: absolute;
|
||||||
background: rgba(32, 33, 36, 50%);
|
background: rgba(32, 33, 36, 50%);
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
@ -717,6 +717,12 @@ input::file-selector-button {
|
|||||||
transition: 0s visibility, 0.3s opacity;
|
transition: 0s visibility, 0.3s opacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-height: 1050px) {
|
||||||
|
.popup {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.popup > div {
|
.popup > div {
|
||||||
position: relative;
|
position: relative;
|
||||||
background: var(--background-color2);
|
background: var(--background-color2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user