.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;
|
}
|