aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/scss/_grid.scss
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-09-10 22:11:26 -0700
committerzotlabs <mike@macgirvin.com>2018-09-10 22:11:26 -0700
commitadc164b825c3b9e322921f2da9d1baf178b04cd3 (patch)
treefa5e805e53e7661ad936873e1a66017ad9dcd6a9 /vendor/twbs/bootstrap/scss/_grid.scss
parentbe3b6304742a6c39d73674b1f7422c029e7cd804 (diff)
parentc6abe87ec2e08fc38ff9c505ac2000d52d45c228 (diff)
downloadvolse-hubzilla-adc164b825c3b9e322921f2da9d1baf178b04cd3.tar.gz
volse-hubzilla-adc164b825c3b9e322921f2da9d1baf178b04cd3.tar.bz2
volse-hubzilla-adc164b825c3b9e322921f2da9d1baf178b04cd3.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into xdev_merge
Diffstat (limited to 'vendor/twbs/bootstrap/scss/_grid.scss')
-rw-r--r--vendor/twbs/bootstrap/scss/_grid.scss52
1 files changed, 52 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/scss/_grid.scss b/vendor/twbs/bootstrap/scss/_grid.scss
new file mode 100644
index 000000000..a22751537
--- /dev/null
+++ b/vendor/twbs/bootstrap/scss/_grid.scss
@@ -0,0 +1,52 @@
+// Container widths
+//
+// Set the container width, and override it for fixed navbars in media queries.
+
+@if $enable-grid-classes {
+ .container {
+ @include make-container();
+ @include make-container-max-widths();
+ }
+}
+
+// Fluid container
+//
+// Utilizes the mixin meant for fixed width containers, but with 100% width for
+// fluid, full width layouts.
+
+@if $enable-grid-classes {
+ .container-fluid {
+ @include make-container();
+ }
+}
+
+// Row
+//
+// Rows contain and clear the floats of your columns.
+
+@if $enable-grid-classes {
+ .row {
+ @include make-row();
+ }
+
+ // Remove the negative margin from default .row, then the horizontal padding
+ // from all immediate children columns (to prevent runaway style inheritance).
+ .no-gutters {
+ margin-right: 0;
+ margin-left: 0;
+
+ > .col,
+ > [class*="col-"] {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+}
+
+// Columns
+//
+// Common styles for small and large grid columns
+
+@if $enable-grid-classes {
+ @include make-grid-columns();
+}