Skip to content

Instantly share code, notes, and snippets.

@jdsteinbach
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save jdsteinbach/d77aa1c48281fdf3d5f9 to your computer and use it in GitHub Desktop.

Select an option

Save jdsteinbach/d77aa1c48281fdf3d5f9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.0)
// ----
$map: (value: 1200px);
.container {
max-width: map-get($map,value)-1; //bad
max-width: map-get($map,value) - 1; //good
}
.container {
max-width: 1200px -1;
max-width: 1199px; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment