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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.notice-card {
  background-color: var(--td-white-color-1);
  border-radius: var(--td-border-radius);
  margin-bottom: var(--td-spacer);
  box-shadow: var(--td-shadow-4);
  /* background-color: var(--td-gray-color-1); */
}
 
.notice-card .notice-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: var(--td-text-line-height);
  font-size: var(--td-font-size-m);
  padding: var(--td-spacer-1);
  box-shadow: var(--td-shadow-4);
  /* background-color: var(--td-bg-color-block); */
}
 
.notice-card .notice-card__title text {
  margin-left: var(--td-spacer);
}
 
.notice-card__item {
  padding: var(--td-spacer) var(--td-spacer) 0 var(--td-spacer);
  display: flex;
}
 
.notice-card__item-body {
  overflow: hidden;
}
 
.notice-card__item-title {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-primary);
  font-weight: 600;
}
 
.notice-card__item-content {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-secondary);
}
 
.notice-card__item-time {
  position: relative;
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
 
.flex-h {
  display: flex;
  align-items: center;
}
 
.t-class-empty {
  padding: var(--td-spacer-1);
  /* background-color: var(--td-gray-color-1); */
}
 
.t-class-empty-description {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-disabled);
}
 
.t-class-divider {
  margin: 0 !important;
}