Skip to content

Instantly share code, notes, and snippets.

@thetwopct
Created April 16, 2019 04:59
Show Gist options
  • Save thetwopct/4553298c5b9bdf6931242551492a84cc to your computer and use it in GitHub Desktop.
Save thetwopct/4553298c5b9bdf6931242551492a84cc to your computer and use it in GitHub Desktop.
Reference SCSS Variable in SCSS Calc
$body_padding: 1em;
body {
height: calc(100% - #{$body_padding})
}
// #{$variable}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment