umami/components/metrics/RealtimeLog.module.css

42 lines
527 B
CSS
Raw Normal View History

2020-10-09 11:56:15 +02:00
.table {
2020-10-10 02:58:27 +02:00
font-size: var(--font-size-xsmall);
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;
line-height: 40px;
font-weight: 600;
}
2020-10-09 11:56:15 +02:00
.row {
display: flex;
border-bottom: 1px solid var(--gray300);
}
2020-10-09 13:21:59 +02:00
.body {
overflow: auto;
}
.icon {
align-self: center;
margin-right: 20px;
}
2020-10-10 02:58:27 +02:00
.website {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.detail {
flex: 1;
}
.detail span {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}