From 91ecf5ebfc2ae3d1a68b1da08840759f78062823 Mon Sep 17 00:00:00 2001 From: Hiroki Terashima Date: Wed, 1 Nov 2023 10:41:38 -0700 Subject: [PATCH] Add font styles to textarea #1476 --- src/style/base/_typography.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/style/base/_typography.scss b/src/style/base/_typography.scss index ffffbae3548..30b1d89cfe9 100644 --- a/src/style/base/_typography.scss +++ b/src/style/base/_typography.scss @@ -9,3 +9,8 @@ $wise-typography: mat.define-typography-config( $caption: mat.define-typography-level(14px, 20px, 400), $button: mat.define-typography-level(14px, 14px, 500, $letter-spacing: 'normal'), ); + +textarea { + font-family: Roboto,Helvetica Neue,sans-serif; + font-size: 100%; +}