I am developing an application in Shiny with Flexdashboard which will be hosted on a server and I am trying to place a style.css to the dashboard, which does not work when using Shiny.
I have not found any answers, does anyone know what could be happening?
I leave some code and images as examples, and I remain attentive to your comments.
YAML header without Shiny:
---
title: "Title"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
css: estilo2.css
---
Output without Shiny:
YAML header with Shiny:
---
title: "Title"
runtime: shiny
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
css: estilo2.css
---
Output with Shiny
I also tried placing the .css file in a www/estilo2.css folder, but it doesn't work.
---
title: "Title"
runtime: shiny
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
css: www/estilo2.css
---