From 5905215b4a8db8fe8dd67754fc3fe14ee630d538 Mon Sep 17 00:00:00 2001 From: Kyle Doherty <5248953+kdoh@users.noreply.github.com> Date: Fri, 3 Feb 2023 07:32:24 -0500 Subject: [PATCH] specify a default font family for storybook (#28029) --- .storybook/preview-head.html | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .storybook/preview-head.html diff --git a/.storybook/preview-head.html b/.storybook/preview-head.html new file mode 100644 index 00000000000..4a113a805ae --- /dev/null +++ b/.storybook/preview-head.html @@ -0,0 +1,5 @@ +<style type="text/css"> + :root { + --default-font-family: "Lato"; + } +</style> -- GitLab