riku
2024-08-12 65124213af664a68ad88ce7f6dcb133116d7702f
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
@import '../../../behaviors/picker/template-selector.wxss';
 
.picker-selector {
  justify-content: flex-end;
}
 
.subtask-wrap {
  background-color: var(--td-bg-color-fade);
  /* border-radius: var(--td-border-radius); */
  border-bottom-left-radius: var(--td-border-radius);
  border-bottom-right-radius: var(--td-border-radius);
  box-shadow: var(--td-shadow-4);
  padding: var(--td-spacer);
  /* margin-top: var(--td-spacer); */
  color: var(--td-text-color-primary);
}
 
.flex-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.subtask-title {
  /* background-color: blanchedalmond; */
  font-weight: 600;
  font-size: var(--td-font-size-m);
}
 
.subtask-abstract {
  font-size: var(--td-font-size-base);
}
 
.stat-card__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--td-spacer-2);
  height: var(--content-height);
}