3-column panels become 1-column below 1000px width

This commit is contained in:
RossAscends
2024-09-04 09:00:56 +09:00
parent a71753b243
commit 8952b93560

View File

@@ -1,12 +1,13 @@
/*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/ /*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {
#UI-Theme-Block, #UI-Theme-Block,
#UI-Customization, #UI-Customization,
#power-user-options-block, #power-user-options-block,
#ContextSettings, #ContextSettings,
#InstructSettingsColumn, #InstructSettingsColumn,
#InstructSequencesColumn { #InstructSequencesColumn {
flex-basis: auto; flex-basis: 100%;
} }