Skip to content

Instantly share code, notes, and snippets.

@aquaflamingo
Created June 30, 2021 03:10
Show Gist options
  • Save aquaflamingo/674b9e88d31e7dbe662fdbd62a9a1e03 to your computer and use it in GitHub Desktop.
Save aquaflamingo/674b9e88d31e7dbe662fdbd62a9a1e03 to your computer and use it in GitHub Desktop.

Bootstrap Icons Rails 6

Install: https://icons.getbootstrap.com/ As a font face

yarn add bootstrap-icons

Then update application.scss

@import "bootstrap-icons/font/bootstrap-icons";
@font-face {
  font-family: "bootstrap-icons";
  src: font-url("bootstrap-icons/font/fonts/bootstrap-icons.woff2") format("woff2"),
    font-url("bootstrap-icons/font/fonts/bootstrap-icons.woff") format("woff");
}

You can use <i class="bi bi-plus-circle"></i> after!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment