The width variable can not be at the end of the media query in the media-query.css file as they do not get compiled correctly.
Change:
@custom-media --laptop-and-larger (1280px <= width);
@custom-media --desktop-and-larger (1440px <= width);
To:
@custom-media --laptop-and-larger (width >= 1280px);
@custom-media --desktop-and-larger (width >= 1440px);
Closed: outdated
4.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.