We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b06b55a commit 03cd51aCopy full SHA for 03cd51a
web/src/lib/components/diff/ConciseDiffView.svelte
@@ -157,7 +157,9 @@
157
{#each line.content as segment, index (index)}
158
{@const iconClass = segment.iconClass}
159
{#if iconClass}
160
- <span class="ms-0.5 iconify inline-block size-4 align-middle {segment.classes ?? ''} {iconClass}" aria-label={segment.caption}></span>
+ <span class="inline-block ps-0.5 {segment.classes ?? ''}" aria-label={segment.caption}>
161
+ <span class="iconify size-4 align-middle {iconClass}" aria-hidden="true"></span>
162
+ </span>
163
{:else}<span class="inline {segment.classes ?? ''}" style={segment.style ?? ""}>{segment.text}</span>{/if}
164
{/each}
165
{/if}
0 commit comments