From 1ca8378bb9d566352836fe6ab591b1143c97759c Mon Sep 17 00:00:00 2001 From: Andrew Heuermann Date: Thu, 13 Jul 2017 12:57:39 -0500 Subject: [PATCH] Make alignment modifiers !important fixes (#748) --- sass/base/helpers.sass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass index b421208f..cc0131e8 100644 --- a/sass/base/helpers.sass +++ b/sass/base/helpers.sass @@ -33,10 +33,10 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' +clearfix .is-pulled-left - float: left + float: left !important .is-pulled-right - float: right + float: right !important // Overflow @@ -51,13 +51,13 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' // Text .has-text-centered - text-align: center + text-align: center !important .has-text-left - text-align: left + text-align: left !important .has-text-right - text-align: right + text-align: right !important @each $name, $pair in $colors $color: nth($pair, 1)