Skip to content

Commit a88334d

Browse files
committed
fix: unocss syntax
1 parent 86b83ee commit a88334d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/components/BookmarkButton.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ function handleClick() {
2828
class="block w-4 h-4 transition-colors duration-150"
2929
:class="
3030
isBookmarked
31-
? 'i-carbon-bookmark-filled text-accent'
32-
: 'i-carbon-bookmark text-fg-subtle hover:text-fg'
31+
? 'i-carbon:bookmark-filled text-accent'
32+
: 'i-carbon:bookmark text-fg-subtle hover:text-fg'
3333
"
3434
aria-hidden="true"
3535
/>

app/components/HeaderBookmarksDropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function handleClearAll(event: Event) {
4444
>
4545
<span
4646
class="w-[1em] h-[1em] shrink-0"
47-
:class="hasBookmarks ? 'i-carbon-bookmark-filled' : 'i-carbon-bookmark'"
47+
:class="hasBookmarks ? 'i-carbon:bookmark-filled' : 'i-carbon:bookmark'"
4848
aria-hidden="true"
4949
/>
5050
<span class="hidden sm:inline">{{ $t('header.bookmarks') }}</span>

0 commit comments

Comments
 (0)