mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.0 KiB
30 lines
1.0 KiB
<script lang="ts" setup> |
|
interface Props { |
|
bannerImageUrl?: string | null |
|
} |
|
const { bannerImageUrl } = defineProps<Props>() |
|
|
|
const { getPossibleAttachmentSrc } = useAttachment() |
|
</script> |
|
|
|
<template> |
|
<div class="nc-form-banner-wrapper w-full mx-auto rounded-2xl overflow-hidden" :style="{ aspectRatio: 4 / 1 }"> |
|
<LazyCellAttachmentImage |
|
v-if="bannerImageUrl" |
|
:srcs="getPossibleAttachmentSrc(parseProp(bannerImageUrl))" |
|
class="nc-form-banner-image object-cover w-full" |
|
/> |
|
<div v-else class="h-full flex items-stretch justify-between bg-white"> |
|
<div class="flex -mt-1"> |
|
<img src="~assets/img/form-banner-left.png" alt="form-banner-left'" /> |
|
</div> |
|
|
|
<div class="w-[91px] flex justify-center"> |
|
<img class="max-h-full self-center" src="~assets/img/icons/256x256.png" alt="form-banner-logo" /> |
|
</div> |
|
<div class="flex justify-end -mb-1"> |
|
<img src="~assets/img/form-banner-right.png" alt="form-banner-left'" /> |
|
</div> |
|
</div> |
|
</div> |
|
</template>
|
|
|