port-nimara-client-portal/pages/dashboard/social-media.vue

32 lines
433 B
Vue
Raw Normal View History

<template>
<div class="embed">
<iframe
2025-06-05 18:26:18 +02:00
src="https://marketing.starbit.cloud/marketing/"
/>
</div>
</template>
<script lang="ts" setup>
useHead({
title: "Social Media",
});
</script>
<style scoped>
.embed {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
}
.embed iframe {
position: absolute;
width: 100%;
height: calc(100% + 180px);
border: 0;
top: 0;
left: 0;
}
</style>