fix: changelog margins overlapping link (#3593)

* fix: changelog margins overlapping link

* dont start gradient 8rem away
This commit is contained in:
ThatGravyBoat 2025-05-07 18:28:00 -02:30 committed by GitHub
parent 2d5d2d5df8
commit 32920dd825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 8 deletions

View File

@ -39,13 +39,8 @@ if (!changelogEntry.value) {
>
<ChevronLeftIcon /> View full changelog
</nuxt-link>
<Timeline fade-out-end :fade-out-start="!isFirst" :class="{ '-mt-8': !isFirst }">
<ChangelogEntry
:entry="changelogEntry"
:first="isFirst"
show-type
:class="{ 'mt-8': !isFirst }"
/>
<Timeline fade-out-end :fade-out-start="!isFirst">
<ChangelogEntry :entry="changelogEntry" :first="isFirst" show-type />
</Timeline>
</div>
</template>

View File

@ -48,7 +48,7 @@ withDefaults(
mask-image: linear-gradient(
to bottom,
transparent 0%,
black 8rem,
black,
black calc(100% - 8rem),
transparent 100%
);