mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
50 lines
624 B
CSS
50 lines
624 B
CSS
.table {
|
|
font-size: var(--font-size-xsmall);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 16px;
|
|
line-height: 40px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 40px;
|
|
border-bottom: 1px solid var(--gray300);
|
|
}
|
|
|
|
.body {
|
|
overflow: auto;
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.time {
|
|
min-width: 60px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.website {
|
|
text-align: right;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.detail {
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
|
|
.detail span {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|