31 lines
457 B
Vue
31 lines
457 B
Vue
<template>
|
|
<div class="embed">
|
|
<iframe
|
|
src="https://analytics.portnimara.com/share/56Dc1w6yYGAOjyoj/portnimara.com"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "Site Analytics",
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.embed {
|
|
position: relative;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
.embed iframe {
|
|
width: 100%;
|
|
height: calc(100% + 120px);
|
|
border: 0;
|
|
position: absolute;
|
|
top: -120px;
|
|
}
|
|
</style>
|