From: harry Date: Sun, 29 Jan 2017 20:06:01 +0000 (+0530) Subject: Removed unnecessary parenthesis X-Git-Tag: v6.4.0-rc1~23^2~20^2~181^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9718%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Removed unnecessary parenthesis --- diff --git a/scss/typography/_utilities.scss b/scss/typography/_utilities.scss index 74a2472a2..8a468c52a 100644 --- a/scss/typography/_utilities.scss +++ b/scss/typography/_utilities.scss @@ -6,7 +6,7 @@ /// @group text-utilities //// -@mixin text-hide() { +@mixin text-hide { font: 0/0 a; color: transparent; text-shadow: none; @@ -14,13 +14,13 @@ border: 0; } -@mixin text-truncate() { +@mixin text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -@mixin text-nowrap() { +@mixin text-nowrap { white-space: nowrap; }