You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 satır
1.5KB

  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}{\code{clearfix} Fixes an element's floating children
  11. \code{pulled-left} Moves an element to the left
  12. \code{pulled-right} Moves an element to the right}
  13. \item{spacing}{\code{marginless} Removes any margin
  14. \code{paddingless} Removes any padding}
  15. \item{other}{\code{overlay} Completely covers the first positioned parent
  16. \code{clipped} Adds overflow hidden
  17. \code{radiusless} Removes any radius
  18. \code{shadowless} Removes any shadow
  19. \code{unselectable} Prevents the text from being selectable
  20. \code{invisible} Adds visibility hidden
  21. \code{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. String of modifier classes
  26. }
  27. \description{
  28. Bulma Helper Classes
  29. }
  30. \examples{
  31. bulma_helper(float = "pulled-left")
  32. bulma_helper(spacing = c("marginless", "paddingless"))
  33. bulma_helper(other = "clipped", float = "pulled-right")
  34. }
  35. \references{
  36. \url{https://bulma.io/documentation/modifiers/helpers}
  37. }
  38. \seealso{
  39. Other Bulma modifiers: \code{\link{bulma_color}},
  40. \code{\link{bulma_modifier}},
  41. \code{\link{bulma_responsive_alignment}},
  42. \code{\link{bulma_responsive_size}},
  43. \code{\link{bulma_responsive}},
  44. \code{\link{bulma_typography}}
  45. }
  46. \concept{Bulma modifiers}