From 68bffb93d271efc0a5da51ea97f62d08543c33c6 Mon Sep 17 00:00:00 2001 From: harry Date: Mon, 30 Jan 2017 01:36:01 +0530 Subject: [PATCH] Removed unnecessary parenthesis --- scss/typography/_utilities.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.47.2