Skip to content

Commit

Permalink
💄 Prevent project icon from shrinking
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic committed Dec 30, 2024
1 parent 2eb3205 commit 04e5f61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/editor-ui/src/components/Projects/ProjectIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const props = withDefaults(defineProps<Props>(), {
}
.small {
width: var(--spacing-l);
min-width: var(--spacing-l);
height: var(--spacing-l);
.emoji {
Expand All @@ -60,7 +60,7 @@ const props = withDefaults(defineProps<Props>(), {
}
.medium {
width: var(--spacing-xl);
min-width: var(--spacing-xl);
height: var(--spacing-xl);
.emoji {
Expand All @@ -70,7 +70,7 @@ const props = withDefaults(defineProps<Props>(), {
.large {
// Making this in line with user avatar size
width: 40px;
min-width: 40px;
height: 40px;
.emoji {
Expand Down

0 comments on commit 04e5f61

Please sign in to comment.