From 0198e29f460f18476caef318849fc1fd078d652b Mon Sep 17 00:00:00 2001 From: Alejandro Romano Date: Mon, 18 Oct 2021 08:05:35 -0300 Subject: [PATCH] Fix margins for every emoji set (#585) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Custom emojis, when displayed as icons in every page and in the left sidebar of Notion, are a bit misaligned. This is not the case for the emojis in the page content. Just specific places when they act like icons. They are a few pixels off but it triggers an OCD in me 🤣 This fixes it and it looks awesome. Precisely aligned as the default emoji set. --- mods/emoji-sets/app.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mods/emoji-sets/app.css diff --git a/mods/emoji-sets/app.css b/mods/emoji-sets/app.css new file mode 100644 index 0000000..cf8b1ec --- /dev/null +++ b/mods/emoji-sets/app.css @@ -0,0 +1,11 @@ +/* + * emoji sets + * (c) 2020 dragonwocky (https://dragonwocky.me/) + * (c) this css fix was provided by Arecsu from martyr⁠— (https://martyr.shop/) + * under the MIT license + */ + +div.notion-record-icon [style*='Apple Color Emoji'] { + display: flex; + justify-content: center; +}