summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_bootstrap-grid.scss
blob: 87332f4bc60b3d39442f7f300fa474e64fc90e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.container-xl {
  // Fluid layout container class sets 100%
  // width until xl breakpoint. Once a max-width
  // is set, setting the left margin to 0 is needed
  // so the content doesn't center align
  // https://bootstrap-vue.org/docs/components/layout#fluid-width-container
  margin-left: 0;
}

@media (min-width: 1200px) {
  .container-xl {
    max-width: unset !important;
  }
  .col-md-9,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11 {
    flex: 0 0 100%;
    max-width: unset !important;
  }
}

@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 100%;
    max-width: unset !important;
  }
}