Merge pull request #18749 from overleaf/mf-render-new-plans-page-based-on-screen-size

[web] Create a configuration to render new plans page content based on screen width

GitOrigin-RevId: 64e1eba3a44665c6f58b432ff46a8b5e5a9f2cfa
This commit is contained in:
M Fahru 2024-06-06 10:39:27 -07:00 committed by Copybot
parent 0f783a7346
commit 671b7fd0d9

View file

@ -122,4 +122,20 @@
display: flex;
align-items: center;
}
.plans-new-mobile {
display: none;
@media (max-width: @screen-xs-max) {
display: flex;
}
}
.plans-new-desktop {
display: flex;
@media (max-width: @screen-xs-max) {
display: none;
}
}
}