31 lines
476 B
Vue
31 lines
476 B
Vue
|
|
<template>
|
||
|
|
<div class="embed">
|
||
|
|
<iframe
|
||
|
|
src="https://database.portnimara.com/dashboard/#/nc/kanban/2fe9125c-9051-4b49-93ff-745159528425"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
useHead({
|
||
|
|
title: "Interest Status",
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.embed {
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
width: 100%;
|
||
|
|
height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
.embed iframe {
|
||
|
|
width: 100%;
|
||
|
|
height: calc(100% + 46px);
|
||
|
|
border: 0;
|
||
|
|
position: absolute;
|
||
|
|
top: -46px;
|
||
|
|
}
|
||
|
|
</style>
|