Skip to content

Commit

Permalink
fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Nov 22, 2024
1 parent 0a1914a commit ca3d995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/LogoDoubleTicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const bottomLogoArray = computed(() => {
</script>

<template>
<div v-for="(logoArray, index) in [topLogoArray, bottomLogoArray]" :key="index" class="block-logocloud-ticker">
<div v-for="(logoArray, index) in [topLogoArray, bottomLogoArray]" :key="index" class="block-logo-cloud-ticker">
<Vue3Marquee :clone="true" :duration="30" :direction="index === 1 ? 'reverse' : 'normal'">
<div class="logo-container">
<BaseDirectusImage
Expand All @@ -37,7 +37,7 @@ const bottomLogoArray = computed(() => {
</template>
<style scoped lang="scss">
.block-logocloud-ticker {
.block-logo-cloud-ticker {
position: relative;
overflow: hidden;
mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
Expand Down

0 comments on commit ca3d995

Please sign in to comment.