You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stylint complains about "duplicate property or selector, consider merging" for the usage of "{block}" in completely different functions.
// Should be used for "Print" style
view-print()
@media print
{block}
// For devices with a viewport up to 320px width
breakpoint-mobile-xs-view()
@media screen and (max-width: 320px)
{block}
// For devices with a viewport up to 1280px width (usually laptops & desktops)
breakpoint-desktop-view()
@media screen and (min-width: 981px)
{block}
The text was updated successfully, but these errors were encountered:
Stylint complains about "duplicate property or selector, consider merging" for the usage of "{block}" in completely different functions.
The text was updated successfully, but these errors were encountered: