From 0bf55b472df931c4cd146f17e6d442e1b2a366f4 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Wed, 20 Aug 2025 18:13:09 +0200 Subject: [PATCH] Fix font family. "sans" does not exist" Thanks Maik --- www/ouya-allgames.css | 2 +- www/ouya-discover.css | 2 +- www/ouya-game.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/www/ouya-allgames.css b/www/ouya-allgames.css index c2810df..c9cd733 100644 --- a/www/ouya-allgames.css +++ b/www/ouya-allgames.css @@ -11,7 +11,7 @@ body { background-size: cover; background-attachment: fixed; color: #CCC; - font-family: sans; + font-family: sans-serif; margin: 0; padding: 0; padding-top: 10ex; diff --git a/www/ouya-discover.css b/www/ouya-discover.css index 64a741f..e339b2a 100644 --- a/www/ouya-discover.css +++ b/www/ouya-discover.css @@ -8,7 +8,7 @@ body { background-size: cover; background-attachment: fixed; color: #CCC; - font-family: sans; + font-family: sans-serif; margin: 0; padding: 0; padding-top: 10ex; diff --git a/www/ouya-game.css b/www/ouya-game.css index 9a6234d..bee3f25 100644 --- a/www/ouya-game.css +++ b/www/ouya-game.css @@ -8,7 +8,7 @@ body { background-size: cover; background-attachment: fixed; color: #CCC; - font-family: sans; + font-family: sans-serif; margin: 0; padding: 0; padding-top: 10ex; -- 2.30.2