Skip to content

Commit

Permalink
Merge pull request #18 from sanctuarycomputer/add-vertical-align-classes
Browse files Browse the repository at this point in the history
Add vertical align classes
  • Loading branch information
ellismarte authored Apr 19, 2019
2 parents d3d239e + 1800bfc commit d7cb94a
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.node_modules
node_modules
.sass-cache
yarn-error.log
.DS_Store
18 changes: 18 additions & 0 deletions dist/basement.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/basement.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/basement.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/basement.min.css.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions src/definitions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ $class-definitions: (
table-cell: ( display: table-cell ),
flex: ( display: flex ),
inline-flex: ( display: inline-flex ),
vertical-align-top: ( vertical-align: top ),
vertical-align-middle: ( vertical-align: middle ),
vertical-align-bottom: ( vertical-align: bottom ),
overflow-hidden: ( overflow: hidden ),
overflow-x-hidden: ( overflow-x: hidden ),
overflow-y-hidden: ( overflow-y: hidden ),
Expand Down Expand Up @@ -111,8 +114,8 @@ $class-definitions: (


// Classes in this list will be generated with all breakpoint prefixes.
// For example, if 'flex' is included in this list 'flex', 'sm-flex', 'md-flex',
// 'lg-flex', 'xl-flex', will all be generated (name of the prefixes is dependant
// For example, if 'flex' is included in this list 'flex', 'sm:flex', 'md:flex',
// 'lg:flex', 'xl:flex', will all be generated (name of the prefixes is dependant
// on what is set).
$dynamic-classes:
wauto,
Expand All @@ -128,6 +131,9 @@ $dynamic-classes:
table-cell,
flex,
inline-flex,
vertical-align-top,
vertical-align-middle,
vertical-align-bottom,
absolute,
relative,
fixed,
Expand Down

0 comments on commit d7cb94a

Please sign in to comment.