Skip to content

Commit 6aabce8

Browse files
drankouclaude
andauthored
fix: shrink E2B template badge to match Figma (#467)
Shrinks the E2B badge used in the templates list to match the Figma spec. | Before | After | | ------- | ------- | | <img width="608" height="274" alt="CleanShot 2026-06-25 at 16 58 37@2x" src="https://github.com/user-attachments/assets/22c4264f-ab3d-47d4-a58f-83837809d63e" /> | <img width="614" height="278" alt="CleanShot 2026-06-25 at 16 58 26@2x" src="https://github.com/user-attachments/assets/d740f660-0d33-49a0-84cd-f9951a75c580" /> | closes EN-1148 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent a507b17 commit 6aabce8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ui/brand.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ export const E2BLogoSmall = ({
5858
)
5959

6060
export const E2BBadge = ({ className, ...props }: BadgeProps) => (
61-
<Badge className={cn('gap-1', className)} variant="default" {...props}>
62-
<span className="inline-flex items-center">
63-
<E2BLogoSmall className="h-[8px] w-auto" />
61+
<Badge className={cn('h-4', className)} variant="default" {...props}>
62+
<span className="inline-flex h-[8px] w-[25px] items-center justify-center">
63+
<E2BLogoSmall className="h-[7px] w-auto" />
6464
</span>
6565
</Badge>
6666
)

0 commit comments

Comments
 (0)