Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

47 Zeilen
1.1KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/modifiers.R
  3. \name{bulma_helper}
  4. \alias{bulma_helper}
  5. \title{Bulma Helper Classes}
  6. \usage{
  7. bulma_helper(float = NULL, spacing = NULL, other = NULL)
  8. }
  9. \arguments{
  10. \item{float}{`clearfix` Fixes an element's floating children
  11. `pulled-left` Moves an element to the left
  12. `pulled-right` Moves an element to the right}
  13. \item{spacing}{`marginless` Removes any margin
  14. `paddingless` Removes any padding}
  15. \item{other}{`overlay` Completely covers the first positioned parent
  16. `clipped` Adds overflow hidden
  17. `radiusless` Removes any radius
  18. `shadowless` Removes any shadow
  19. `unselectable` Prevents the text from being selectable
  20. `invisible` Adds visibility hidden
  21. `sr-only` Hide elements visually but keep the element available to be announced by a screen reader}
  22. }
  23. \value{
  24. String of modifer classes
  25. }
  26. \description{
  27. Bulma Helper Classes
  28. }
  29. \examples{
  30. bulma_helper(float = "pulled-left")
  31. bulma_helper(spacing = c("marginless", "paddingless"))
  32. bulma_helper(other = "clipped", float = "pulled-right")
  33. }
  34. \references{
  35. https://bulma.io/documentation/modifiers/helpers
  36. }