From 6f2b9b04799bbbc51c84b9d0c33dcf0c52bdc13e Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 25 Oct 2018 14:38:14 -0400 Subject: [PATCH] fix(note): update note font size for MD (#16088) --- core/src/components/note/note.md.scss | 2 ++ core/src/components/note/note.md.vars.scss | 3 +++ 2 files changed, 5 insertions(+) diff --git a/core/src/components/note/note.md.scss b/core/src/components/note/note.md.scss index fb90c1cc81..7698c60a01 100644 --- a/core/src/components/note/note.md.scss +++ b/core/src/components/note/note.md.scss @@ -6,4 +6,6 @@ :host { --color: #{$note-md-color}; + + font-size: $note-md-font-size; } diff --git a/core/src/components/note/note.md.vars.scss b/core/src/components/note/note.md.vars.scss index 62ca9cb152..8ec97b4a5d 100644 --- a/core/src/components/note/note.md.vars.scss +++ b/core/src/components/note/note.md.vars.scss @@ -5,3 +5,6 @@ /// @prop - Text color of the note $note-md-color: $text-color-step-800 !default; + +/// @prop - Font size of the note +$note-md-font-size: 14px !default;