fix: mobile preview visibility with explicit flex display
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled

This commit is contained in:
2025-12-30 21:45:41 +01:00
parent 130b0dbdc7
commit 5f692677c7

View File

@@ -1143,15 +1143,20 @@ input:checked + .toggle-slider::before {
.preview-section { .preview-section {
order: 3; order: 3;
display: flex;
flex-direction: column;
min-height: 50vh;
} }
.editor-section { .editor-section {
order: 4; order: 4;
flex: 1; display: flex;
flex-direction: column;
min-height: 50vh; min-height: 50vh;
} }
.preview-wrapper { .preview-wrapper {
flex: 1;
margin: var(--spacing-sm); margin: var(--spacing-sm);
min-height: 40vh; min-height: 40vh;
} }