From fe88d941ee411b9fd251e6b7ebfb028e9671d9c8 Mon Sep 17 00:00:00 2001 From: Neo Date: Thu, 5 Sep 2024 23:44:53 +0000 Subject: [PATCH] Update font to Roboto Replace the previously used font in the style.css file with Roboto. The original font was not widely supported across different platforms and browsers, which could lead to inconsistent user experiences. By switching to Roboto, we ensure better compatibility and a more uniform appearance for users accessing the application. --- 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 f08b07d6..6268f18d 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 Slab', serif; + font-family: 'Roboto', serif; color: #377ba8; margin: 1rem 0; }