Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

29 lines
786B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/modifiers.R
  3. \name{bulma_responsive}
  4. \alias{bulma_responsive}
  5. \title{Bulma Responsive Helper Classes}
  6. \usage{
  7. bulma_responsive(display = NULL, viewport = NULL, only = FALSE)
  8. }
  9. \arguments{
  10. \item{display}{One of "block", "flex", "inline", "inline-block", "inline-flex"}
  11. \item{viewport}{One of "mobile", "tablet", "touch", "desktop", "widescreen",
  12. "fullhd". See <https://bulma.io/documentation/modifiers/responsive-helpers/>
  13. for more information.}
  14. }
  15. \value{
  16. A string of helper classes
  17. }
  18. \description{
  19. Bulma Responsive Helper Classes
  20. }
  21. \examples{
  22. bulma_responsive("flex", "tablet")
  23. bulma_responsive("flex", "widescreen", only = TRUE)
  24. }
  25. \references{
  26. https://bulma.io/documentation/modifiers/responsive-helpers/
  27. }