bulma/sass/base/helpers.sass

64 lines
701 B
Sass
Raw Normal View History

// Display
.is-flex
display: flex
// Float
.is-clearfix
+clearfix
.is-pulled-left
float: left
.is-pulled-right
float: right
// Overlay
.is-overlay
+overlay
// Text
2016-04-10 15:00:32 +00:00
.has-text-centered
text-align: center
2016-04-10 15:00:32 +00:00
.has-text-left
text-align: left
2016-04-10 15:00:32 +00:00
.has-text-right
text-align: right
// Visibility
2016-04-10 16:21:19 +00:00
.is-hidden
display: none !important
.is-hidden-mobile
+mobile
display: none !important
.is-hidden-tablet
+tablet
display: none !important
.is-hidden-touch
+touch
display: none !important
.is-hidden-desktop
+desktop
display: none !important
// Other
.is-disabled
pointer-events: none
2016-04-10 15:27:27 +00:00
.is-marginless
margin: 0 !important
2016-01-24 00:03:43 +00:00
.is-unselectable
+unselectable