From 04e5f618027c048b7e20ba92b45272335462f488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milorad=20FIlipovi=C4=87?= Date: Mon, 30 Dec 2024 15:20:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Prevent=20project=20icon=20from?= =?UTF-8?q?=20shrinking?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/editor-ui/src/components/Projects/ProjectIcon.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/editor-ui/src/components/Projects/ProjectIcon.vue b/packages/editor-ui/src/components/Projects/ProjectIcon.vue index ec5a0c6f37523..ae3c47b4e3485 100644 --- a/packages/editor-ui/src/components/Projects/ProjectIcon.vue +++ b/packages/editor-ui/src/components/Projects/ProjectIcon.vue @@ -51,7 +51,7 @@ const props = withDefaults(defineProps(), { } .small { - width: var(--spacing-l); + min-width: var(--spacing-l); height: var(--spacing-l); .emoji { @@ -60,7 +60,7 @@ const props = withDefaults(defineProps(), { } .medium { - width: var(--spacing-xl); + min-width: var(--spacing-xl); height: var(--spacing-xl); .emoji { @@ -70,7 +70,7 @@ const props = withDefaults(defineProps(), { .large { // Making this in line with user avatar size - width: 40px; + min-width: 40px; height: 40px; .emoji {