Dropdown-menu mobile view opens to right instead of left
HugoGit39 opened this issue · 1 comments
HugoGit39 commented
Hi
the dropwdown-menu with notifications opens at the right side on mobile outisde the view in stead of right. With Shinydashboard it does opens at the left:
library(shiny)
library(bs4Dash)
ui <- dashboardPage(
dashboardHeader(title = "My Dashboard",
rightUi = (
dropdownMenu(type = "notifications",
notificationItem(
text = "5 new users today",
icon("users")
),
notificationItem(
text = "12 items delivered",
icon("truck"),
status = "success"
),
notificationItem(
text = "Server load at 86%",
icon = icon("exclamation-triangle"),
status = "warning"
)
)
)
),
dashboardSidebar(),
dashboardBody(
)
)
server <- function(input, output) {
}
shinyApp(ui, server)