Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/deployments/compute-badge.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

{#if config}
<div
class="inline-flex items-center gap-1 rounded-sm border border-subtle px-2 py-0.5 text-sm text-primary"
class="flex items-center gap-1 rounded-sm border border-subtle px-1 text-primary"
>
<Icon name={config.icon} class="h-4 w-4" />
{config.label}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/deployments/deployment-status.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

const deploymentStatus = cva(
[
'flex items-center gap-1 px-1 transition-colors rounded-sm border border-subtle',
'flex items-center justify-center gap-1 px-1 min-w-24 transition-colors rounded-sm border border-subtle',
],
{
variants: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
{#if latestBuildId}
<div class="flex items-center gap-2">
<Copyable
container-class="min-w-32 shrink-0"
content={latestBuildId}
copyIconTitle={translate('common.copy-icon-title')}
copySuccessIconTitle={translate('common.copy-success-icon-title')}
Expand Down
Loading