From 425cbf719df441c1bff8a8c49cb7b9db675fb62e Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Tue, 10 Sep 2019 14:54:41 -0700 Subject: [PATCH] delete src/layout/columns.scss --- src/layout/columns.scss | 56 ----------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 src/layout/columns.scss diff --git a/src/layout/columns.scss b/src/layout/columns.scss deleted file mode 100644 index b168282f..00000000 --- a/src/layout/columns.scss +++ /dev/null @@ -1,56 +0,0 @@ -// Grid system -// -// Create rows with `.columns` to clear the floated columns and outdent the -// padding on `.column`s with negative margin for alignment. - -@warn ".columns, .column, .one-third, .two-thirds, .one-fourth, .one-half, .three-fourths, .one-fifth, .four-fifths, .centered will be deprecated in 12.0.0 please migrate to grid.scss"; - -.columns { - margin-right: -$grid-gutter; - margin-left: -$grid-gutter; - @include clearfix; -} - -// Base class for every column (requires a column width from below) -.column { - float: left; - padding-right: $grid-gutter; - padding-left: $grid-gutter; -} - -// Column widths -.one-third { - width: 33.333333%; -} - -.two-thirds { - width: 66.666667%; -} - -.one-fourth { - width: 25%; -} - -.one-half { - width: 50%; -} - -.three-fourths { - width: 75%; -} - -.one-fifth { - width: 20%; -} - -.four-fifths { - width: 80%; -} - -// Centers content horizontally. Can be used inside or outside the grid. -.centered { - display: block; - float: none; - margin-right: auto; - margin-left: auto; -}