Skip to content

Commit 6df755f

Browse files
committed
rmv icon for border left
1 parent 6082afe commit 6df755f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/svelte.dev/src/routes/packages/PackageCard.svelte

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,9 @@
4646
<p class="description">{pkg.description}</p>
4747

4848
{#if pkg.svCmd}
49-
<div class="sv-cmd">
50-
<span data-icon="svelte"></span>
51-
<span>{pkg.svCmd}</span>
52-
</div>
49+
<span class="sv-cmd">
50+
{pkg.svCmd}
51+
</span>
5352
{/if}
5453
<p class="stats">
5554
{#if pkg.downloads}
@@ -222,11 +221,12 @@
222221
}
223222
224223
.sv-cmd {
224+
display: inline-block;
225225
font: var(--sk-font-ui-small);
226226
color: var(--sk-fg-3);
227227
background: var(--sk-bg-3);
228-
padding: 0.5rem;
229-
display: inline-block;
228+
padding: 0.3rem 0.7rem;
229+
border-left: 0.3rem solid var(--sk-bg-accent);
230230
}
231231
}
232232
</style>

0 commit comments

Comments
 (0)