Add pages/dashboard/client-support.vue
This commit is contained in:
parent
1208bd35d2
commit
f2ae0ac9fa
|
|
@ -0,0 +1,31 @@
|
|||
<template>
|
||||
<div class="embed">
|
||||
<iframe
|
||||
src="https://support.portnimara.com/app/"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
useHead({
|
||||
title: "Client Support",
|
||||
});
|
||||
</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>
|
||||
Loading…
Reference in New Issue