|
- % 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{
- https://bulma.io/documentation/modifiers/helpers
- }
- \seealso{
- Bulma modifiers
- }
|