]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Fixes #781 Add min/max height/width to delete class size modifiers (#799)
authorZack Ward <ZackWard@users.noreply.github.com>
Tue, 13 Jun 2017 09:38:48 +0000 (03:38 -0600)
committerJeremy Thomas <bbxdesign@gmail.com>
Tue, 13 Jun 2017 09:38:48 +0000 (10:38 +0100)
* Add min/max height/width to delete class size modifiers

* Add max/min-height/width per @jgthms change request

sass/utilities/mixins.sass

index 99e644670ee26148083c9c5951074ef1c2b2eb7a..5997c1a660ba076d690d9ce19716ad7dd4075a84 100644 (file)
   // Sizes
   &.is-small
     height: 16px
+    max-height: 16px
+    max-width: 16px
+    min-height: 16px
+    min-width: 16px
     width: 16px
   &.is-medium
     height: 24px
+    max-height: 24px
+    max-width: 24px
+    min-height: 24px
+    min-width: 24px
     width: 24px
   &.is-large
     height: 32px
+    max-height: 32px
+    max-width: 32px
+    min-height: 32px
+    min-width: 32px
     width: 32px
 
 =fa($size, $dimensions)