]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Make alignment modifiers !important fixes (#748)
authorAndrew Heuermann <aheuermann@gmail.com>
Thu, 13 Jul 2017 17:57:39 +0000 (12:57 -0500)
committerJeremy Thomas <bbxdesign@gmail.com>
Thu, 13 Jul 2017 17:57:39 +0000 (18:57 +0100)
sass/base/helpers.sass

index b421208ff1b59cef54bee37106d7759a985454c6..cc0131e880e49773df4fa57e750c6425aaf2a7ba 100644 (file)
@@ -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)