TaskCompensation.vue
656 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
<div class="task-compensation">
<div class="div-left">
<div>2</div>
<div>3</div>
</div>
<div>234</div>
</div>
</template>
<script>
export default {
name: "TaskCompensation",
data() {
return {};
},
methods: {},
};
</script>
<style lang="scss" scoped>
.task-compensation {
display: flex;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
div {
flex: 1;
height: 79vh;
//margin-top: 1vh;
background-color: #2d2b2b;
}
}
.div-left {
display: flex;
flex-direction: column;
div {
flex: 1;
background-color: #ccc;
// height: 40vh;
margin: 10px;
}
}
</style>