mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
22 lines
450 B
SCSS
22 lines
450 B
SCSS
.events {
|
|
& > .table {
|
|
table-layout: fixed;
|
|
.event-row > td {
|
|
width: 25%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
.event-day-separator {
|
|
background-color: $gray-300;
|
|
text-align: center;
|
|
}
|
|
.event-row {
|
|
transition: background-color 2s;
|
|
}
|
|
.event-row-new {
|
|
background-color: $gray-300;
|
|
|
|
}
|
|
} |