mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
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.
12 lines
311 B
CSS
12 lines
311 B
CSS
/*
|
||
* emoji sets
|
||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (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;
|
||
}
|