portfolio/app/components/NextPagePointer.vue
christiangoeschel d6b2a3e6d9
All checks were successful
Pull Request Checks / commit-message-check (pull_request) Successful in 6s
Pull Request Checks / linting (pull_request) Successful in 1m58s
feat: Add a CI pipeline and fix all code style issues
2025-02-27 00:08:41 -05:00

29 lines
471 B
Vue

<template>
<div class="inline-block w-auto">
<div id="find-out-link">
<slot/>
</div>
</div>
</template>
<style>
#find-out-link {
display: inline-block;
*display: inline;
zoom: 1;
margin: 20px 0px;
a:after {
content: '';
display: block;
height: 1px;
width: 0;
background: transparent;
transition: width .5s ease, background-color .5s ease;
}
a:hover:after {
width: 100%;
background: #000000;
}
}
</style>