1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-07-03 11:33:44 +02:00
hugo-theme-bootstrap4-blog/source/scss/style.scss
Alan Orth 4d79004570
source/scss: Only import parts of font-awesome that we actually need
We can save ~30KiB in our stylesheet by only importing font-awesome
features and icons that we are actually using.
2016-11-16 12:00:21 +02:00

15 lines
521 B
SCSS

// ie9 is minimum supported by Bootstrap v4 and it doesn't support flexbox
$enable-flex: false;
$enable-grid-classes: true;
// optional: import local styles first
@import 'source/scss/main.scss';
// selectively import components we need from font-awesome
// see: node_modules/font-awesome/scss/font-awesome.scss
@import 'source/scss/font-awesome.scss';
// selectively import components we need from bootstrap
// see: node_modules/bootstrap/scss/bootstrap.scss
@import 'source/scss/bootstrap.scss';