skillbox/client/src/components/content-blocks/ImageBlock.vue

14 lines
246 B
Vue

<template>
<img src="https://picsum.photos/400?random" alt="" class="image-block">
</template>
<style scoped lang="scss">
.image-block {
width: 100%;
max-width: 100%;
border-radius: 13px;
margin-bottom: 30px;
}
</style>