Created
January 4, 2012 19:36
-
-
Save chriseppstein/1561650 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Sass::Script::Functions | |
def random(max = Sass::Script::Number.new(100)) | |
Sass::Script::Number.new(rand(max.value), max.numerator_units, max.denominator_units) | |
end | |
end |
@serv @jeffbkk
Yeah add it to the end of your compass.rb
if you're using Compass
and run
compass compile --force
or check out http://blog.codepen.io/2013/09/17/adding-random-function-sass/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Using Bourbon mixin, non-progrmmer, i have to clue where to put this file... Should i inject it into function.rb modules or should i create a rb file somewhere on my system ?
Thank you