Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/css/support/blog.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.recommendations-list {
height: calc(var(--recommendations-section-min) * 1.04);
@apply overflow-y-auto pr-2;
@apply scroll-smooth custom-scrollbar;
@apply scroll-smooth;
}

.blog-h1 {
Expand Down
2 changes: 1 addition & 1 deletion src/partials/ResumePageSkeletonPartial.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</section>
<section class="space-y-8">
<h2 class="h3 font-aspekta text-slate-800 dark:text-slate-100">Recommendations</h2>
<ul class="space-y-8">
<ul class="recommendations-list custom-scrollbar space-y-8">
<li v-for="item in 2" :key="`resume-recommendation-skeleton-${item}`" class="relative group">
<div class="flex items-start">
<div
Expand Down Expand Up @@ -88,7 +88,7 @@
showRefreshButton: false,
});

const emit = defineEmits<{ (event: 'retry'): void }>();

Check warning on line 91 in src/partials/ResumePageSkeletonPartial.vue

View workflow job for this annotation

GitHub Actions / format

'event' is defined but never used. Allowed unused args must match /^_/u

const showRefreshButton = toRef(props, 'showRefreshButton');
</script>
Loading