Last active
August 15, 2017 07:06
-
-
Save canabady/f37f11064b46346d70f27b46d495cfeb to your computer and use it in GitHub Desktop.
Tutorial: Styling Angular CLI apps with Bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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