@import 'text-transformation';
// Text Decoration classes
-// @import 'text-decoration';
+@import 'text-decoration';
// Font Styling
// @import 'font-styling';
@include foundation-prototype-text-alignment;
@include foundation-prototype-text-utilities;
@include foundation-prototype-text-transformation;
+ @include foundation-prototype-text-decoration;
}
--- /dev/null
+// Foundation for Sites by ZURB
+// foundation.zurb.com
+// Licensed under MIT Open Source
+
+////
+/// @group prototype-text-decoration
+////
+
+@mixin foundation-prototype-text-decoration {
+ @each $size in $breakpoint-classes {
+ @include breakpoint($size) {
+ @each $decoration in (overline, underline, line-through) {
+ @if $size != $-zf-zero-breakpoint {
+ .#{$size}-text-#{$decoration} {
+ text-transform: $decoration;
+ }
+ }
+ @else {
+ .text-#{$decoration} {
+ text-transform: $decoration;
+ }
+ }
+ }
+ }
+ }
+}