mirror of
https://github.com/Coldsmiles/infstarweb.git
synced 2026-04-23 02:30:41 +08:00
20 lines
376 B
Vue
20 lines
376 B
Vue
<template>
|
|
<iframe
|
|
class="iframe-fullpage"
|
|
src="https://mcmap.lunadeer.cn/#world:2710:0:-1575:2531:0:0:0:1:flat"
|
|
frameborder="0"
|
|
allowfullscreen
|
|
></iframe>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.iframe-fullpage {
|
|
position: fixed;
|
|
top: var(--bl-header-height);
|
|
left: 0;
|
|
width: 100%;
|
|
height: calc(100vh - var(--bl-header-height));
|
|
border: none;
|
|
}
|
|
</style>
|