forked from drone/command-center-dashboard

LGH
2025-03-26 f3130e0fd8a44bcfb6e0057564e5590b268edcea
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
<script setup></script>
 
<template>
  <div class="left">10</div>
  <div class="right">20</div>
</template>
 
<style scoped lang="scss">
div {
  font-size: 20px;
}
 
.left {
  left: 0;
  position: absolute;
  width: 300px;
  height: 100%;
  background: #2b373d;
}
.right{
  right: 0;
  position: absolute;
  width: 300px;
  height: 100%;
  background: #2b373d;
}
</style>