|
- % 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}{`clearfix` Fixes an element's floating children
-
- `pulled-left` Moves an element to the left
-
- `pulled-right` Moves an element to the right}
-
- \item{spacing}{`marginless` Removes any margin
-
- `paddingless` Removes any padding}
-
- \item{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
- }
- \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
- }
|