├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── emoji-clarification.scss ├── package.json └── showcase.gif /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | \__* 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/README.md -------------------------------------------------------------------------------- /emoji-clarification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/emoji-clarification.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/package.json -------------------------------------------------------------------------------- /showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreruffert/emoji-clarification/HEAD/showcase.gif --------------------------------------------------------------------------------