I am trying to embed social links on a flexdashboard
and I get the following:
---
title: "Dashboard"
output:
flexdashboard::flex_dashboard:
storyboard: true
css: ["default", "assets/css/my-theme.css", "assets/css/my-fonts.css"]
orientation: columns
navbar:
- { icon: "fa-github", href: "https://github.com/", align: center }
- { icon: "fa-youtube", href: "https://www.youtube.com/", align: center}
- { icon: "fa-linkedin", href: "https://www.linkedin.com/", align: center}
vertical_layout: fill
theme:
version: 3
bootswatch: yeti
runtime: shiny
---
Is there a way to properly align it to the right side? Mine appears to be on a newline.
I came from this post: How to define links for social network icons on flexdashboard?