UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

70 lines (63 loc) 1.21 kB
@media (max-width: @screen-xs-max) { .hidden-xs { /** * `576px` 以下隐藏 * `576px` hidden below */ display: none !important; } } @media (max-width: @screen-sm-max) { .hidden-sm { /** * `768px` 以下隐藏 * `768px` hidden below */ display: none !important; } } @media (max-width: @screen-md-max) { .hidden-md { /** * `992px` 以下隐藏 * `992px` hidden below */ display: none !important; } } @media (max-width: @screen-lg-max) { .hidden-lg { /** * `1200px` 以下隐藏 * `1200px` hidden below */ display: none !important; } } @media (max-width: @screen-xl-max) { .hidden-xl { /** * `1600px` 以下隐藏 * `1600px` hidden below */ display: none !important; } } @media (min-width: @mobile-min) { .hidden-pc { /** * PC端隐藏,默认:`768px` 以上 * Hidden on the PC, default: above `768px` */ display: none !important; } } @media (max-width: @mobile-max) { .hidden-mobile { /** * 移动端隐藏,默认:`768px` 以下 * Hidden on the mobile, default: below `768px` */ display: none !important; } }