mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-19 13:41:13 +02:00
This will allow us to iterate faster on documentation for multiple versions of Talos. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
39 lines
683 B
Vue
39 lines
683 B
Vue
<template>
|
|
<div class="app">
|
|
<Header></Header>
|
|
<main role="main" class="content">
|
|
<nuxt />
|
|
</main>
|
|
<Footer></Footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from '~/components/Header.vue'
|
|
import Footer from '~/components/Footer.vue'
|
|
|
|
export default {
|
|
components: {
|
|
Header,
|
|
Footer
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
html {
|
|
background: url(~assets/images/chips_bg_v1.svg) no-repeat center center fixed;
|
|
-webkit-background-size: contain;
|
|
-moz-background-size: contain;
|
|
-o-background-size: contain;
|
|
background-size: contain;
|
|
background-position: center bottom;
|
|
}
|
|
</style>
|