Skip to content

Instantly share code, notes, and snippets.

@canabady
Last active August 15, 2017 07:06
Show Gist options
  • Save canabady/f37f11064b46346d70f27b46d495cfeb to your computer and use it in GitHub Desktop.
Save canabady/f37f11064b46346d70f27b46d495cfeb to your computer and use it in GitHub Desktop.
Tutorial: Styling Angular CLI apps with Bootstrap
Tutorial: Styling Angular CLI apps with Bootstrap
Add and configure Bootstrap and FontAwesome dependencies
========================================================
$ npm install --save [email protected] font-awesome
Open the file src/styles.css and adding the following two statements.
=====================================================================
@import "~bootstrap/dist/css/bootstrap.min.css";
@import "~font-awesome/css/font-awesome.css";
Source: https://medium.com/@beeman/tutorial-add-bootstrap-to-angular-cli-apps-b0a652f2eb2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment