From 206f4f4d72d774f59ccff4ac482adf6b7f3da19d Mon Sep 17 00:00:00 2001 From: Neo Date: Thu, 5 Sep 2024 23:46:59 +0000 Subject: [PATCH] Update font to sans-serif This commit updates the font style in the file flaskr/static/style.css to include sans-serif. This change was made in response to a pull request review comment suggesting that the font should also be sans-serif. The update ensures consistency in the font style across the application, enhancing the overall visual appearance and readability. --- flaskr/static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaskr/static/style.css b/flaskr/static/style.css index 6268f18d..1c888fe8 100644 --- a/flaskr/static/style.css +++ b/flaskr/static/style.css @@ -13,7 +13,7 @@ body { } h1, h2, h3, h4, h5, h6 { - font-family: 'Roboto', serif; + font-family: 'Roboto', sans-serif; color: #377ba8; margin: 1rem 0; }