37 lines
798 B
Vue
37 lines
798 B
Vue
<template>
|
|
<div class="home flex-grow-1 d-flex flex-column align-items-center justify-content-center">
|
|
<div class="home-card p-5 bg-white rounded elevation-3">
|
|
<img src="https://bcw.blob.core.windows.net/public/img/8600856373152463" alt="CodeWorks Logo" class="rounded-circle">
|
|
<h1 class="my-5 bg-dark text-white p-3 rounded text-center">
|
|
Vue 3 Starter
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Home'
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.home{
|
|
display: grid;
|
|
height: 80vh;
|
|
place-content: center;
|
|
text-align: center;
|
|
user-select: none;
|
|
.home-card{
|
|
width: 50vw;
|
|
> img{
|
|
height: 200px;
|
|
max-width: 200px;
|
|
width: 100%;
|
|
object-fit: contain;
|
|
object-position: center;
|
|
}
|
|
}
|
|
}
|
|
</style>
|