mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 05:01:23 +01:00
11 lines
189 B
SCSS
11 lines
189 B
SCSS
// Typography
|
|
|
|
// [converter] $parent hack
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
#{$parent} {
|
|
color: $color;
|
|
}
|
|
a#{$parent}:hover {
|
|
color: darken($color, 10%);
|
|
}
|
|
}
|