mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-17 20:17:03 +02:00
This makes the header a fixed height without animation. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
43 lines
751 B
Vue
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>
|