From 6cd613811bc2a02909aa27614941aab6ab3eda4c Mon Sep 17 00:00:00 2001 From: innovaciones Date: Fri, 23 Sep 2022 12:47:13 -0500 Subject: [PATCH 1/3] Fix preview images position --- style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/style.css b/style.css index e4fe5453..f9b9c1f6 100644 --- a/style.css +++ b/style.css @@ -154,9 +154,22 @@ button{ right: 0; margin-left: auto; margin-right: auto; + margin-top: 35px; z-index: 100; } +@media screen and (min-width: 768px) { + #txt2img_preview, #img2img_preview { + position: absolute; + } +} + +@media screen and (max-width: 767px) { + #txt2img_preview, #img2img_preview { + position: relative; + } +} + #txt2img_preview div.left-0.top-0, #img2img_preview div.left-0.top-0{ display: none; } From e1d49c5262ee6b7cce96e56a530ef140fc44fe45 Mon Sep 17 00:00:00 2001 From: innovaciones Date: Fri, 23 Sep 2022 12:58:50 -0500 Subject: [PATCH 2/3] Fix border --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index f9b9c1f6..e65b672a 100644 --- a/style.css +++ b/style.css @@ -156,6 +156,9 @@ button{ margin-right: auto; margin-top: 35px; z-index: 100; + border: none; + border-top-left-radius: 0; + border-top-right-radius: 0; } @media screen and (min-width: 768px) { From b04a36be37320bc0b78de320cc5c731d3ae79dc1 Mon Sep 17 00:00:00 2001 From: innovaciones Date: Fri, 23 Sep 2022 14:33:02 -0500 Subject: [PATCH 3/3] Tweak margin --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index e65b672a..4054e2df 100644 --- a/style.css +++ b/style.css @@ -154,7 +154,7 @@ button{ right: 0; margin-left: auto; margin-right: auto; - margin-top: 35px; + margin-top: 34px; z-index: 100; border: none; border-top-left-radius: 0;