_grid.scss 714 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Container widths
  2. //
  3. // Set the container width, and override it for fixed navbars in media queries.
  4. @if $enable-grid-classes {
  5. .container {
  6. @include make-container();
  7. @include make-container-max-widths();
  8. }
  9. }
  10. // Fluid container
  11. //
  12. // Utilizes the mixin meant for fixed width containers, but without any defined
  13. // width for fluid, full width layouts.
  14. @if $enable-grid-classes {
  15. .container-fluid {
  16. @include make-container();
  17. }
  18. }
  19. // Row
  20. //
  21. // Rows contain and clear the floats of your columns.
  22. @if $enable-grid-classes {
  23. .row {
  24. @include make-row();
  25. }
  26. }
  27. // Columns
  28. //
  29. // Common styles for small and large grid columns
  30. @if $enable-grid-classes {
  31. @include make-grid-columns();
  32. }