website/ui/src/views/Home.vue

22 lines
360 B
Vue
Raw Normal View History

2021-11-01 15:17:50 +11:00
<template>
<div id="home">
2021-11-01 21:23:57 +11:00
<v-parallax class="troploGradient">
<p class="text-h2 normal">asdasd</p>
</v-parallax>
2021-11-01 15:17:50 +11:00
</div>
</template>
2021-11-01 21:23:57 +11:00
<style>
.troploGradient {
background: -webkit-radial-gradient(#0179f3, #0190ea)
}
.normal {
font-color: #ffffff
}
</style>
2021-11-01 15:17:50 +11:00
<script>
export default {
name: 'Home',
}
2021-10-23 22:57:48 +11:00
</script>