BuildingDashboard.vue 652 Bytes
Newer Older
abergavenny's avatar
abergavenny committed
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
30
31
<script setup>
import BuildingData from '@/components/BuildingData.vue'
import BuildingEvaluation from '@/components/BuildingEvaluation.vue'
</script>

<template>
  <div class="building-dashboard">
    <BuildingEvaluation />
    <BuildingData />
    <router-view></router-view>
  </div>
</template>

<style scoped>
.building-dashboard {
  overflow-y: auto;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: var(--grid-layout);
}

@media (min-width: 48em) {
  .building-dashboard {
    overflow: hidden;
    padding: var(--spacing);
    grid-template-columns: var(--grid-layout);
    grid-template-rows: 1fr;
  }
}
</style>