This commit is contained in:
2023-06-06 09:30:12 +02:00
parent e24e864c70
commit 922ee6ac41
2 changed files with 13 additions and 7 deletions

View File

@@ -13,6 +13,12 @@
--shadow-outset: 0 0 0.5rem var(--color-gray); --shadow-outset: 0 0 0.5rem var(--color-gray);
} }
html {
text-size-adjust: none;
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
}
body { body {
margin: 0; margin: 0;
overflow: overlay; overflow: overlay;

View File

@@ -222,11 +222,6 @@
z-index: 10; z-index: 10;
} }
.section--preview.horizontal img {
width: 90vh;
height: 90vw;
}
/* .section--preview.horizontal .close--preview { /* .section--preview.horizontal .close--preview {
left: 0.25rem; left: 0.25rem;
right: unset; right: unset;
@@ -258,12 +253,17 @@
} }
.section--preview img { .section--preview img {
width: 90vh; width: 90vw;
max-width: 100rem; max-width: 100rem;
height: 90vw; height: 90vh;
max-height: 56.25rem; max-height: 56.25rem;
object-fit: cover; object-fit: cover;
box-shadow: var(--shadow-outset); box-shadow: var(--shadow-outset);
}
.section--preview.horizontal img {
width: 90vh;
height: 90vw;
transform: rotate(-90deg); transform: rotate(-90deg);
} }