Bulma Helper Classes

bulma_helper(float = NULL, spacing = NULL, other = NULL)

Arguments

float

`clearfix` Fixes an element's floating children

`pulled-left` Moves an element to the left

`pulled-right` Moves an element to the right

spacing

`marginless` Removes any margin

`paddingless` Removes any padding

other

`overlay` Completely covers the first positioned parent `clipped` Adds overflow hidden

`radiusless` Removes any radius

`shadowless` Removes any shadow

`unselectable` Prevents the text from being selectable

`invisible` Adds visibility hidden

`sr-only` Hide elements visually but keep the element available to be announced by a screen reader

Value

String of modifer classes

References

https://bulma.io/documentation/modifiers/helpers

Examples

bulma_helper(float = "pulled-left")
#> [1] "is-pulled-left"
bulma_helper(spacing = c("marginless", "paddingless"))
#> [1] "is-marginless is-paddingless"
bulma_helper(other = "clipped", float = "pulled-right")
#> [1] "is-pulled-right is-clipped"