From 6aa86cc3a3fe414ab8ff71fe603a31c689b573ab Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 17 Dec 2019 17:11:04 +0100 Subject: [PATCH] SASS: adding "text-mono" class --- _sass/_typography.scss | 4 ++++ _sass/main.scss | 1 + 2 files changed, 5 insertions(+) create mode 100644 _sass/_typography.scss diff --git a/_sass/_typography.scss b/_sass/_typography.scss new file mode 100644 index 0000000..7343c59 --- /dev/null +++ b/_sass/_typography.scss @@ -0,0 +1,4 @@ + +.text-mono { + font-family: $mono-font; +} diff --git a/_sass/main.scss b/_sass/main.scss index d7006e0..d5a3a1e 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -1,3 +1,4 @@ @import "variables"; @import "base"; +@import "typography";