% Generated by roxygen2: do not edit by hand % Please edit documentation in R/modifiers.R \name{bulma_helper} \alias{bulma_helper} \title{Bulma Helper Classes} \usage{ bulma_helper(float = NULL, spacing = NULL, other = NULL) } \arguments{ \item{float}{\code{clearfix} Fixes an element's floating children \code{pulled-left} Moves an element to the left \code{pulled-right} Moves an element to the right} \item{spacing}{\code{marginless} Removes any margin \code{paddingless} Removes any padding} \item{other}{\code{overlay} Completely covers the first positioned parent \code{clipped} Adds overflow hidden \code{radiusless} Removes any radius \code{shadowless} Removes any shadow \code{unselectable} Prevents the text from being selectable \code{invisible} Adds visibility hidden \code{sr-only} Hide elements visually but keep the element available to be announced by a screen reader} } \value{ String of modifer classes String of modifier classes } \description{ Bulma Helper Classes } \examples{ bulma_helper(float = "pulled-left") bulma_helper(spacing = c("marginless", "paddingless")) bulma_helper(other = "clipped", float = "pulled-right") } \references{ \url{https://bulma.io/documentation/modifiers/helpers} } \seealso{ Other Bulma modifiers: \code{\link{bulma_color}}, \code{\link{bulma_modifier}}, \code{\link{bulma_responsive_alignment}}, \code{\link{bulma_responsive_size}}, \code{\link{bulma_responsive}}, \code{\link{bulma_typography}} } \concept{Bulma modifiers}