talos/docs/website/components/Footer.vue
Andrew Rynhard 12c650457e docs: remove header animation
This makes the header a fixed height without animation.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-10-21 18:34:47 -07:00

43 lines
751 B
Vue

<template>
<footer>
<div class="flex flex-col items-center my-3">
<img class="cncf" src="/images/cncf-color.png" alt="" />
<p>
We are a
<a href="https://cncf.io" target="_blank"
>Cloud Native Computing Foundation</a
>
member.
</p>
</div>
<div>
<a class="inline-block no-underline color-inherit" href="/">
© 2019 Talos Systems, Inc.
</a>
</div>
</footer>
</template>
<style>
footer {
@apply bg-white flex flex-col items-center font-sans justify-between py-5;
}
footer a {
@apply text-gray-600 text-xs;
}
footer a:hover {
@apply text-black underline;
}
.color-inherit {
color: inherit;
}
.cncf {
width: 250px;
height: 39px;
}
</style>