riku
2023-07-20 d22ce1ad1c4656f5c2212bbabb35ba498300aced
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<template>
  <BaseMap></BaseMap>
  <div class="overlay-container">
    <!-- <router-view> -->
    <!-- <GridLayout></GridLayout> -->
    <ClueLayout></ClueLayout>
    <!-- </router-view> -->
  </div>
</template>
 
<script setup>
import GridLayout from '@/views/overlay-grid/GridLayout.vue';
import ClueLayout from '@/views/overlay-clue/ClueLayout.vue';
</script>
 
<style scoped>
.overlay-container {
  background: transparent;
  position: absolute;
  min-height: var(--screen-min-height);
  min-width: var(--screen-min-width);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 4px;
  pointer-events: none;
}
</style>