From 2cd851a7c153c051b55365481a4e9ea6938e8be3 Mon Sep 17 00:00:00 2001 From: enes Date: Mon, 29 Jul 2024 11:19:41 +0200 Subject: [PATCH] fix: add default typography styles --- src/styles/typography.scss | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/styles/typography.scss diff --git a/src/styles/typography.scss b/src/styles/typography.scss new file mode 100644 index 0000000..96e8c91 --- /dev/null +++ b/src/styles/typography.scss @@ -0,0 +1,7 @@ +$font-familiy: 'Roboto', system-ui, sans-serif; + +$letter-spacing: 1px; + +$body-font-size: 18px; +$body-line-height: 1.5; +$body-font-weight: 500;