This commit is contained in:
2023-06-06 10:18:52 +02:00
parent 3442c4408a
commit 6c30f217f4
3 changed files with 25 additions and 37 deletions

View File

@@ -23,10 +23,12 @@
}
.preview {
display: flex;
position: absolute;
top: calc(50% - 2rem);
left: calc(50% - 3.25rem);
background: var(--color-white);
box-shadow: var(--shadow-outset);
transform: rotate(-90deg);
cursor: pointer;
}
@@ -35,13 +37,13 @@
}
.preview--prev {
left: 0;
bottom: 0;
padding: 1.25rem 1rem 1.25rem 1.5rem;
border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.preview--next {
right: 0;
top: 0;
padding: 1.25rem 1.5rem 1.25rem 1rem;
border-radius: var(--border-radius) 0 0 var(--border-radius);
}