Skip to content

Instantly share code, notes, and snippets.

@pixelbacon
Last active January 24, 2024 09:32
Show Gist options
  • Save pixelbacon/5703579b4c4c7c47ab52 to your computer and use it in GitHub Desktop.
Save pixelbacon/5703579b4c4c7c47ab52 to your computer and use it in GitHub Desktop.
Squarespace Breakpoints.
/**
Squarespace essentially doesn't really document their breakpoints.
This can be quite annoying to not have when doing custom CSS.
Most themes use essentially one breakpoint. Mobile and not mobile; anything 750 and below is considered mobile.
You can use these to write your own CSS and simply use the "Style Editor" to inject your compiled CSS in the event
you are not using "Developer Mode" in your site.
Enjoy!
*/
@mobile: ~"only screen and (max-width: 750px)";
@tablet: ~"only screen and (min-width: 751px)";
@tablet-strict: ~"only screen and (min-width: 751px) and (max-width: 949px)";
@tablet-desktop: ~"only screen and (min-width: 751px)";
@desktop: ~"only screen and (min-width: 950px)";
@desktop-strict: ~"only screen and (min-width: 950px) and (max-width: 1199px)";
@desktop-xl: ~"only screen and (min-width: 1200px)";
// Usage
@media @mobile {
// Code here
}
@media @tablet-strict {
// Code here
}
@media @desktop {
// Code here
}
@rib3ye
Copy link

rib3ye commented Mar 10, 2021

Thank you for this... I am getting an error that says "Variable @desktop is undefined" (screenshot below).

You probably didn't paste in the top section where the variable is defined.

@rp42dev
Copy link

rp42dev commented Jun 24, 2022

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment