diff --git a/Reject.html b/Reject.html
index 58546fa..78d4fa8 100644
--- a/Reject.html
+++ b/Reject.html
@@ -317,8 +317,10 @@
}
.image-viewer img {
- max-width: 100%;
- max-height: 100vh;
+ max-width: none;
+ max-height: none;
+ width: auto;
+ height: auto;
object-fit: contain;
transition: transform 0.1s ease;
cursor: grab;
@@ -351,7 +353,8 @@
}
.image-viewer-prev,
- .image-viewer-next {
+ .image-viewer-next,
+ .image-viewer-rotate {
position: absolute;
top: 50%;
transform: translateY(-50%);
@@ -368,6 +371,17 @@
justify-content: center;
transition: background-color 0.3s ease;
}
+
+ .image-viewer-rotate {
+ top: auto;
+ bottom: 20px;
+ right: 80px;
+ transform: none;
+ }
+
+ .image-viewer-rotate:hover {
+ background-color: rgba(255, 255, 255, 0.4);
+ }
.image-viewer-prev {
left: 20px;
@@ -3469,6 +3483,7 @@ function showImageViewer(imgElement) {
+