September 2017
Intermediate to advanced
450 pages
11h 24m
English
Our Angular application may be modern on the inside, but its user interface is very retro looking, without a modern CSS framework to go with it. Let's install Bootstrap to give our application some nice default styling:
npm install bootstrap@4.0.0-alpha.6 --save
@import '~bootstrap/scss/bootstrap';
This imports all of Bootstrap using a special loader mechanism provided by sass-loader. Our Angular application ...
Read now
Unlock full access