2020-10-09 11:56:15 +02:00
|
|
|
.table {
|
2022-12-13 04:45:38 +01:00
|
|
|
font-size: var(--font-size-xs);
|
2020-10-10 10:28:26 +02:00
|
|
|
overflow: hidden;
|
2021-02-21 15:12:49 +01:00
|
|
|
height: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: fit-content(100%) fit-content(100%) auto;
|
2020-10-09 11:56:15 +02:00
|
|
|
}
|
|
|
|
|
2020-10-10 05:37:24 +02:00
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2020-10-10 10:16:28 +02:00
|
|
|
font-size: 16px;
|
2020-10-10 05:37:24 +02:00
|
|
|
line-height: 40px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2020-10-09 11:56:15 +02:00
|
|
|
.row {
|
|
|
|
display: flex;
|
2020-10-10 10:16:28 +02:00
|
|
|
align-items: center;
|
|
|
|
height: 40px;
|
2022-12-13 04:45:38 +01:00
|
|
|
border-bottom: 1px solid var(--base300);
|
2020-10-09 11:56:15 +02:00
|
|
|
}
|
2020-10-09 13:21:59 +02:00
|
|
|
|
|
|
|
.body {
|
|
|
|
overflow: auto;
|
2021-02-21 15:12:49 +01:00
|
|
|
height: 100%;
|
2020-10-09 13:21:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
2020-10-10 10:16:28 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time {
|
|
|
|
min-width: 60px;
|
|
|
|
overflow: hidden;
|
2020-10-09 13:21:59 +02:00
|
|
|
}
|
2020-10-10 02:58:27 +02:00
|
|
|
|
|
|
|
.website {
|
2020-10-10 10:28:26 +02:00
|
|
|
text-align: right;
|
2020-10-11 07:36:55 +02:00
|
|
|
padding: 0 20px;
|
2020-10-10 02:58:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.detail {
|
2020-10-10 10:16:28 +02:00
|
|
|
display: flex;
|
2020-10-10 02:58:27 +02:00
|
|
|
flex: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2020-11-03 04:37:13 +01:00
|
|
|
|
|
|
|
.row .link {
|
2022-12-13 04:45:38 +01:00
|
|
|
color: var(--base900);
|
2020-11-03 04:37:13 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row .link:hover {
|
|
|
|
color: var(--primary400);
|
|
|
|
}
|