From 66eaeb26cfcb53f3bad814da383e1056b27c15c6 Mon Sep 17 00:00:00 2001 From: Sergii Pavlenko Date: Mon, 13 Sep 2021 12:07:54 +0300 Subject: [PATCH] EWPP-1467: Fix font name issue. --- sass/components/_global.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/components/_global.scss b/sass/components/_global.scss index 5dbedc800..0e12c1da3 100644 --- a/sass/components/_global.scss +++ b/sass/components/_global.scss @@ -3,7 +3,7 @@ // Apply global css. body { - font-family: map.get(theme.$font-family, 'default'); + font-family: #{map.get(theme.$font-family, 'default')}; margin: 0; padding: 0; }