fa4bd2e230
pipeline / build-and-push-images (push) Successful in 1m23s
A History Of My Homelab Small changes: - Underline in lists is fixed - New content components Code, Note - Fixed BlogImage font size - Fixed ImageText margins
18 lines
340 B
Vue
18 lines
340 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
image: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<img class="object-contain sm:max-w-[85%] max-w-[95%] m-auto" :src="props.image" />
|
|
<div class="ml-auto mr-auto mt-2 w-fit max-w-[80%] slot">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="css" scoped>
|
|
.slot > * {
|
|
font-size: 16px;
|
|
}
|
|
</style> |