From 210aa0948a6b1a14d5acdac01b44011d0f631426 Mon Sep 17 00:00:00 2001 From: Alexey Ch Date: Mon, 1 Jun 2015 16:07:54 +0500 Subject: [PATCH 1/3] Update _typography.scss Uppercase for text (class .uppercase) --- helpers/_typography.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpers/_typography.scss b/helpers/_typography.scss index 2d4e05c..39205da 100644 --- a/helpers/_typography.scss +++ b/helpers/_typography.scss @@ -19,3 +19,5 @@ .break-word { word-wrap: break-word; } .no-wrap { white-space: nowrap !important; } + +.uppercase { text-transform: uppercase; } From deabfe308f77cd22d203042f4b3ed47853359c5b Mon Sep 17 00:00:00 2001 From: Alexey Ch Date: Mon, 8 Jun 2015 12:48:42 +0500 Subject: [PATCH 2/3] Update _display.scss add table for "display" property --- helpers/_display.scss | 3 +++ 1 file changed, 3 insertions(+) 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; } From bed1cc37664b7f4682a5afe6f04effa15db082c0 Mon Sep 17 00:00:00 2001 From: Alexey Ch Date: Mon, 8 Jun 2015 12:56:41 +0500 Subject: [PATCH 3/3] Update _typography.scss Add line-height:1 propery --- helpers/_typography.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/helpers/_typography.scss b/helpers/_typography.scss index 39205da..aa1ed10 100644 --- a/helpers/_typography.scss +++ b/helpers/_typography.scss @@ -21,3 +21,4 @@ .no-wrap { white-space: nowrap !important; } .uppercase { text-transform: uppercase; } +.line-height-1 { line-height: 1}