From 56054b9a4c5632cff96747a08063a1dad38817c1 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Fri, 9 Jun 2017 16:17:26 -0700 Subject: [PATCH] simplify font stack actually in the lib this time --- CHANGELOG.md | 5 ++++- lib/sass/calcite-web/type/_config.scss | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 005fe1a27..171ae4223 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ ## 1.0.0-rc.6 -###Fixed +### Fixed - Fixed Modal content not being left aligned in I.E. and Edge browsers text-align:start is not supported in I.E. changed it to text-algin:left +### Modified +- Simplified font-stack for Avenir and monospace + ## 1.0.0-rc.5 ### Fixed diff --git a/lib/sass/calcite-web/type/_config.scss b/lib/sass/calcite-web/type/_config.scss index 0e6a53927..1533d62ec 100644 --- a/lib/sass/calcite-web/type/_config.scss +++ b/lib/sass/calcite-web/type/_config.scss @@ -30,9 +30,9 @@ $indent: 1em; // Header Family $avenir-tracking: 0; -$avenir-family: 'Avenir Next W01', 'Avenir Next W00', 'Avenir Next', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; +$avenir-family: 'Avenir Next', 'Helvetica Neue', sans-serif; // Code Family $code-tracking: 0; -$code-family: 'Consolas', 'Andale Mono', 'Lucida Console', 'Monaco', 'Courier New', Courier, monospace; +$code-family: 'Consolas', 'Andale Mono', 'Lucida Console', 'Monaco', monospace;