31 lines
468 B
Vue
31 lines
468 B
Vue
<template>
|
|
<div class="embed">
|
|
<iframe
|
|
src="https://database.portnimara.com/dashboard/#/nc/view/f7f017c3-17db-485d-a30c-2b068b0d39a3"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
useHead({
|
|
title: "EOI Queue",
|
|
});
|
|
</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>
|