Skip to content

Commit

Permalink
馃憖 Blocked user selection for the icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyr33x committed Feb 11, 2024
1 parent 46ac870 commit caf6609
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/svgCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<!-- Image -->
{#if wordmarkSvg == true}
<img
class="hidden dark:block mb-4 mt-2 h-10"
class="hidden dark:block mb-4 mt-2 h-10 select-none"
src={typeof svgInfo.wordmark !== 'string'
? svgInfo.wordmark?.dark || ''
: svgInfo.wordmark || ''}
Expand All @@ -97,7 +97,7 @@
loading="lazy"
/>
<img
class="block dark:hidden mb-4 mt-2 h-10"
class="block dark:hidden mb-4 mt-2 h-10 select-none"
src={typeof svgInfo.wordmark !== 'string'
? svgInfo.wordmark?.light || ''
: svgInfo.wordmark || ''}
Expand All @@ -107,14 +107,14 @@
/>
{:else}
<img
class={cn('hidden dark:block mb-4 mt-2 h-10')}
class={cn('hidden dark:block mb-4 mt-2 h-10 select-none')}
src={typeof svgInfo.route !== 'string' ? svgInfo.route.dark : svgInfo.route}
alt={svgInfo.title}
title={svgInfo.title}
loading="lazy"
/>
<img
class={cn('block dark:hidden mb-4 mt-2 h-10')}
class={cn('block dark:hidden mb-4 mt-2 h-10 select-none')}
src={typeof svgInfo.route !== 'string' ? svgInfo.route.light : svgInfo.route}
alt={svgInfo.title}
title={svgInfo.title}
Expand Down

0 comments on commit caf6609

Please sign in to comment.