diff --git a/components/Art/Lines.vue b/components/Art/Lines.vue index 68c8bb22..8472e38c 100644 --- a/components/Art/Lines.vue +++ b/components/Art/Lines.vue @@ -58,7 +58,8 @@ onMounted(() => { inset-inline-start: 0; inline-size: 100%; block-size: 100%; - background: linear-gradient(199deg, var(--background) 0%, transparent 100%), + background: + linear-gradient(199deg, var(--background) 0%, transparent 100%), linear-gradient(4deg, var(--background) 20%, transparent 100%); } } diff --git a/components/Base/Icon.vue b/components/Base/Icon.vue index 108c9453..75885765 100644 --- a/components/Base/Icon.vue +++ b/components/Base/Icon.vue @@ -54,6 +54,7 @@ const filledIcons = [ 'globe_uk', 'home_app_logo', 'horizontal_rule', + 'laps', 'link', 'image_search', 'insights', diff --git a/components/Carousel/CarouselContent.vue b/components/Carousel/CarouselContent.vue index 0c10b888..63a79fba 100644 --- a/components/Carousel/CarouselContent.vue +++ b/components/Carousel/CarouselContent.vue @@ -40,7 +40,8 @@ const { carouselRef, orientation } = useCarousel(); --buff: 3rem; height: 100%; width: 100%; - mask: linear-gradient(to right, transparent, white var(--buff) calc(100% - var(--buff)), transparent), + mask: + linear-gradient(to right, transparent, white var(--buff) calc(100% - var(--buff)), transparent), linear-gradient(to left, transparent, white var(--buff) calc(100% - var(--buff)), transparent); mask-composite: intersect; } diff --git a/components/Carousel/interface.ts b/components/Carousel/interface.ts index 5a553672..9597f6c5 100644 --- a/components/Carousel/interface.ts +++ b/components/Carousel/interface.ts @@ -16,6 +16,7 @@ export interface CarouselProps { } export interface CarouselEmits { + // eslint-disable-next-line (e: 'init-api', payload: UnwrapRefCarouselApi): void; } diff --git a/components/Nav/Footer.vue b/components/Nav/Footer.vue index 67dd7869..2c4bed5d 100644 --- a/components/Nav/Footer.vue +++ b/components/Nav/Footer.vue @@ -1,7 +1,7 @@