blob: 49c080c95c617a4aa9e23209ffc19753cb7288dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Custom.scss
// Option B: Include parts of Bootstrap
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
@import "../../../bootstrap/scss/functions";
// 2. Include any default variable overrides here
$primary: #51635EFF;
// 3. Include remainder of required Bootstrap stylesheets
@import "../../../bootstrap/scss/variables";
@import "../../../bootstrap/scss/mixins";
// 4. Include any optional Bootstrap components as you like
@import "../../../bootstrap/scss/root";
@import "../../../bootstrap/scss/reboot";
@import "../../../bootstrap/scss/type";
@import "../../../bootstrap/scss/images";
@import "../../../bootstrap/scss/containers";
@import "../../../bootstrap/scss/grid";
@import "../../../bootstrap/scss/buttons";
// 5. Add additional custom code here
|