Bulma Responsive Alignemnt Helper Classes

bulma_responsive_alignment(alignment = "left", viewport = "desktop")

Arguments

alignment

One of "centered", "justified", "left", "right"

viewport

One of "mobile", "tablet", "touch", "desktop", "widescreen", "fullhd". See https://bulma.io/documentation/modifiers/responsive-helpers/ for more information.

Value

String of modifier classes

References

https://bulma.io/documentation/modifiers/typography-helpers/#responsive-alignment

Examples

bulma_responsive_alignment()
#> [1] "has-text-left-desktop" #> attr(,"class") #> [1] "responsive_alignment" "bulma" "character"
bulma_responsive_alignment("centered", "tablet")
#> [1] "has-text-centered-tablet" #> attr(,"class") #> [1] "responsive_alignment" "bulma" "character"
bulma_responsive_alignment(viewport = "widescreen")
#> [1] "has-text-left-widescreen" #> attr(,"class") #> [1] "responsive_alignment" "bulma" "character"