Followup to 4d1c0b89 Override PinnableElement behaviour at low resolutions.

The media query for the CSS portion of this feature
should not include the `screen` portion because
that's included in the top-level import in skin.less.

Bug: T326364
Change-Id: I1ab0e321dde908982834c92ee428b512218bbe3d
This commit is contained in:
Jan Drewniak 2023-01-13 17:18:20 -05:00
parent 13cc033ab0
commit 0daa4da3c4

View file

@ -41,7 +41,7 @@
* Although this is handled in JS, this rule prevents the pinned menu from * Although this is handled in JS, this rule prevents the pinned menu from
* appearing on pageload, at low resolutions, before the JS kicks in. * appearing on pageload, at low resolutions, before the JS kicks in.
*/ */
@media screen and ( max-width: @max-width-tablet ) { @media ( max-width: @max-width-tablet ) {
.vector-pinned-container { .vector-pinned-container {
display: none; display: none;
} }