From 3e9f771ad3f83b49716ccb68bf5b794447e9a958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Fri, 30 May 2025 17:29:36 +0300 Subject: [PATCH] fix emojis being beeg in user view --- data/static/style.css | 5 +++++ sass/style.scss | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/data/static/style.css b/data/static/style.css index b37536c..8a2e5a5 100644 --- a/data/static/style.css +++ b/data/static/style.css @@ -532,3 +532,8 @@ ul, ol { border-radius: 4px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.25); } + +.emoji { + max-width: 15px; + max-height: 15px; +} diff --git a/sass/style.scss b/sass/style.scss index 2637786..e602371 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -546,3 +546,8 @@ ul, ol { border-radius: 4px; box-shadow: 0 0 30px rgba(0, 0, 0, 0.25); } + +.emoji { + max-width: 15px; + max-height: 15px; +}