diff --git a/helpers/_display.scss b/helpers/_display.scss index e7d615f..50bc4f0 100644 --- a/helpers/_display.scss +++ b/helpers/_display.scss @@ -6,3 +6,6 @@ .block { display: block; } .inline-block { display: inline-block; } .hidden { display: none; } +.table { display: table; } +.table-row { display: table-row; } +.table-cell { display: table-cell; } diff --git a/helpers/_typography.scss b/helpers/_typography.scss index 2d4e05c..aa1ed10 100644 --- a/helpers/_typography.scss +++ b/helpers/_typography.scss @@ -19,3 +19,6 @@ .break-word { word-wrap: break-word; } .no-wrap { white-space: nowrap !important; } + +.uppercase { text-transform: uppercase; } +.line-height-1 { line-height: 1}