How is it possible to change the font family in shiny dashboard for a box in tabItem?
I have already included some css coding in the dashboardBody changing the color and font-family, but this is linked only to the main header:
body <- dashboardBody(
tags$head(tags$style(HTML('
.skin-blue .main-header .logo {
font-family: "Calibri";
font-weight: bold;
font-size: 28px;
background-color: #003D76;
}
.skin-blue .main-header .navbar {
background-color: #0082D1;
}
'))),
Help is much appreciated.
The tabItem has the following beginning:
tabItems(
tabItem(tabName = "dashboard",
fluidRow(
box(
title = strong("GPIM Liquidity Risk"), status = "primary", solidHeader = TRUE, width = 8,
img(src = "gpim-signet.png", height = 80, width = 130),