bootstrap-grid.scss 596 Bytes
Newer Older
1
2
// Bootstrap Grid only
//
3
4
// Includes relevant variables and mixins for the flexbox grid
// system, as well as the generated predefined classes (e.g., `.col-sm-4`).
5

6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Box sizing, responsive, and more
//

@at-root {
  @-ms-viewport { width: device-width; }
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

25
@import "custom";
26
@import "functions";
27
@import "variables";
28

29
30
31
32
33
34
35
36
37
//
// Grid mixins
//

@import "mixins/breakpoints";
@import "mixins/grid-framework";
@import "mixins/grid";

@import "grid";
38
@import "utilities/flex";