mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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:
parent
0f783a7346
commit
671b7fd0d9
1 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue