RinteRface / shinybulma

🌐 Bulma.io for Shiny
https://rinterface.github.io/shinybulma/
Other
111 stars 15 forks source link

bulmaDivider does not render well if vertical is TRUE on mobiles or tablets #6

Open DivadNojnarg opened 6 years ago

DivadNojnarg commented 6 years ago

the display is awful on mobiles/tablets:

 library(shiny)

 ui <- bulmaPage(
  bulmaContainer(
   bulmaColumns(
    bulmaColumn(
      width = 6,
      bulmaBox(
         "test"
      )
    ),
    bulmaDivider(vertical = TRUE),
    bulmaColumn(
      width = 6,
      bulmaBox(
        "test"
      )
    )
   )
  )
 )

 server <- function(input, output, session) {

 }

 shinyApp(ui = ui, server = server)