Closed sqndr closed 9 years ago
_timings.scss contains global variables with a kinda strange name.
_timings.scss
$superfast: 250ms; $fast: 400ms; $normal: 700ms; $slow: 1000ms;
I would suggest we change this to $timings, a sass map.
$timings
$timings: ('superfast': 250ms, …);
Same goes for other variable groups, such as breakpoints, …
Misschien is het een goeie conventie om de var telkens de naam van de file te geven, in dit geval correct $timings <=> _timings.scss
Neem je ook nog de defaults en shades mee? Das iets meer werk.
_timings.scss
contains global variables with a kinda strange name.I would suggest we change this to
$timings
, a sass map.Same goes for other variable groups, such as breakpoints, …