tachyons-skylark/sass/_text_decoration.scss

25 lines
441 B
SCSS
Raw Normal View History

2014-03-13 08:17:54 +00:00
/*
TEXT DECORATION
*/
.under { text-decoration: underline; }
.none { text-decoration: none; }
@include break(not-small) {
.under-ns { text-decoration: underline; }
.none-ns { text-decoration: none; }
}
@include break(medium) {
.under-m { text-decoration: underline; }
.none-m { text-decoration: none; }
}
@include break(large) {
.under-l { text-decoration: underline; }
.none-l { text-decoration: none; }
}