style: show full instructions on mobile without scroll

- Remove max-height and overflow constraints from instructions
- Instructions now expand fully on mobile devices
This commit is contained in:
2025-12-30 19:57:03 +01:00
parent 9c07122d60
commit d7313399c7

View File

@@ -225,8 +225,6 @@ code, kbd {
.instructions { .instructions {
padding: var(--spacing-md); padding: var(--spacing-md);
overflow-y: auto;
max-height: 45%;
border-bottom: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
} }
@@ -1057,8 +1055,8 @@ input:checked + .toggle-slider::before {
} }
.instructions { .instructions {
max-height: 25vh; max-height: none;
overflow-y: auto; overflow-y: visible;
} }
.editor-section { .editor-section {