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

8952b93560f5e7d0b6a6c25edcbdf2b7992928c7

RossAscends <124905043+RossAscends@users.noreply.github.com>

1 files changed, +2 -1Showing whitespace changes
public/css/mobile-styles.css+2 -1
@@ -1,12 +1,13 @@
1/*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/1/*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/
2@media screen and (max-width: 1000px) {2@media screen and (max-width: 1000px) {
3
3 #UI-Theme-Block,4 #UI-Theme-Block,
4 #UI-Customization,5 #UI-Customization,
5 #power-user-options-block,6 #power-user-options-block,
6 #ContextSettings,7 #ContextSettings,
7 #InstructSettingsColumn,8 #InstructSettingsColumn,
8 #InstructSequencesColumn {9 #InstructSequencesColumn {
9 flex-basis: auto;10 flex-basis: 100%;
10 }11 }
1112
1213