op bookmarks

This commit is contained in:
Julian Freeman
2026-04-17 15:47:03 -04:00
parent ee076fc9aa
commit 42905bf6d3

View File

@@ -23,7 +23,7 @@ const emit = defineEmits<{
<div class="data-table-body styled-scrollbar">
<article v-for="bookmark in bookmarks" :key="bookmark.url" class="data-table-row bookmarks-grid">
<div class="row-cell primary-cell">
<strong>{{ bookmark.title }}</strong>
<strong :title="bookmark.title">{{ bookmark.title }}</strong>
</div>
<div class="row-cell muted-cell" :title="bookmark.url">{{ bookmark.url }}</div>
<div class="row-cell actions-cell">
@@ -123,6 +123,9 @@ const emit = defineEmits<{
display: block;
font-size: 0.93rem;
line-height: 1.3;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.muted-cell {