Skip to content

Instantly share code, notes, and snippets.

@makingthingswork
Last active November 19, 2020 14:37
Show Gist options
  • Save makingthingswork/52d4e73bd9f8182c9277e1b11030c4ad to your computer and use it in GitHub Desktop.
Save makingthingswork/52d4e73bd9f8182c9277e1b11030c4ad to your computer and use it in GitHub Desktop.
Create percentage
// Cast number by * 1% to create percentage, appending a % sign just creates a string.
@function percentage($number) {
@return $number * 1%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment