Skip to content

Instantly share code, notes, and snippets.

@greypants
Created April 29, 2015 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greypants/b395363c583b4e35c998 to your computer and use it in GitHub Desktop.
Save greypants/b395363c583b4e35c998 to your computer and use it in GitHub Desktop.
Snap to Grid
// ----
// libsass (v3.1.0)
// ----
$baseUnit: 8
@function snap($value)
@return (round($value / $baseUnit) * $baseUnit +px)
body
width: snap(483)
body {
width: 480px; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment