wip: 2025-06-08T17:25:15+0200 (1749396315)

This commit is contained in:
Victor Westerlund 2025-06-08 17:25:15 +02:00
parent 0e0c52aabb
commit 2d6c92df7c
Signed by: vlw
GPG key ID: D0AD730E1057DFC6

View file

@ -10,6 +10,7 @@ vv-shell {
gap: var(--padding);
width: 100%;
display: flex;
padding: unset;
max-width: 1200px;
overflow-x: initial;
flex-direction: column;
@ -59,12 +60,6 @@ div.overlay button svg {
section.preview {
width: 100%;
height: 700px;
border: solid 4px var(--color-accent);
padding: calc(var(--padding) / 2);
overflow: hidden scroll;
align-self: center;
border-radius: 10px;
}
section.preview.mobile {
@ -73,5 +68,19 @@ section.preview.mobile {
section.preview img {
width: 100%;
pointer-events: none;
}
@media (min-width: 450px) {
section.preview {
width: 400px;
border-radius: 10px;
align-self: center;
border: solid 4px var(--color-accent);
padding: calc(var(--padding) / 2);
}
section.preview img {
border-radius: 4px;
}
}