mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-15 08:47:03 +01:00
Alan Orth
435ba0f706
We don't use all the Bootstrap stuff, so let's just build a custom one with the components we need. This saves about 50k.
13 lines
424 B
SCSS
13 lines
424 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';
|
|
|
|
@import 'node_modules/font-awesome/scss/font-awesome.scss';
|
|
|
|
// selectively import components we need from bootstrap
|
|
// see: node_modules/bootstrap/scss/bootstrap.scss
|
|
@import 'source/scss/bootstrap.scss';
|