diff --git a/services/web/frontend/stylesheets/app/plans/plans-new-design.less b/services/web/frontend/stylesheets/app/plans/plans-new-design.less index 4e861b1c22..3381a9cc06 100644 --- a/services/web/frontend/stylesheets/app/plans/plans-new-design.less +++ b/services/web/frontend/stylesheets/app/plans/plans-new-design.less @@ -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; + } + } }