You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
441 B
Vue

<template>
<div class="HomeImages">
<img alt="cover-image" src="/images/cover-1.jpg">
<img alt="cover-image" src="/images/cover-2.jpg">
</div>
</template>
<script>
export default {
name: "HomeImages"
}
</script>
<style scoped>
.HomeImages {
display: flex;
width: 100%;
flex-wrap: wrap;
justify-content: center;
}
img {
flex-grow: 1;
max-width: 20rem !important;
margin: 1rem;
border-radius: .25rem;
}
</style>