riku
2024-05-21 668f251a5c8099d7edec59f40d1311a6785ef10c
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
46
47
48
49
50
51
52
53
54
55
56
.fy-head {
  height: var(--fy-head-height);
}
 
.fy-body {
  height: var(--fy-body-height);
}
 
.fy-overlay-container {
  pointer-events: none;
  /* background-color: aqua; */
}
 
.fy-card {
  position: relative;
  /* height: 700px; */
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: auto;
  box-shadow: var(--el-box-shadow-dark);
  /* padding: 0 8px; */
}
 
.fy-main {
  /* background-color: aliceblue; */
  padding: 8px 8px 16px 8px;
  font-size: var(--el-font-size-base);
}
 
.fy-main-border {
  /* background-color: aliceblue; */
  padding: 0 8px;
  font-size: var(--el-font-size-base);
  border: var(--el-border);
  border-radius: 6px;
}
 
.fy-column-reverse {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
}
 
.fy-flex-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
}
 
.fy-flex-row>span{
  color: var(--el-text-color-regular);
}