From 4e18d1ce363a0e8c98d61821604e0246f2b64fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Rahir=20=28rar=29?= Date: Fri, 14 Apr 2023 05:55:03 +0000 Subject: [PATCH] [FIX] demo: Align font family with Odoo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Odoo has recently been supporting emoji fonts and characters, which highlighted a misused of said characters in our library. This commit, while not being a robust solution, will allow us to detect such issues more easily. closes odoo/o-spreadsheet#2349 Task: 3269724 Signed-off-by: Lucas Lefèvre (lul) --- demo/main.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demo/main.css b/demo/main.css index c6c8e98f6a..018045656e 100644 --- a/demo/main.css +++ b/demo/main.css @@ -9,7 +9,8 @@ body { height: 100%; margin: 0px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, - "Noto Sans", Arial, sans-serif !important; + "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", + "Noto Color Emoji" !important; } .o-spreadsheet { width: 100%;