Add a section tag.

bulmaHero(..., color = NULL, size = NULL, bold = FALSE, fullheight = FALSE)

bulmaHeroHead(...)

bulmaHeroBody(..., container = TRUE)

bulmaHeroFoot(...)

Arguments

...

any element.

color

hero color.

size

hero size takes NULL, medium or large.

bold

set to TRUE to generate a subtle gradient.

fullheight

set to TRUE to set hero to 100vh.

container

If TRUE wraps a bulmaContainer as a children of the section.

Author

John Coene, jcoenep@gmail.com

Examples

if(interactive()){
library(shiny)

ui <- bulmaPage(
  bulmaHero(
    fullheight = TRUE,
    color = "danger",
    bulmaHeroBody(
      bulmaContainer(
        bulmaTitle("Hello Bulma*"),
        bulmaSubtitle("shinybulma*")
      )
    )
  )
)

server <- function(input, output){}

shinyApp(ui, server)
}