0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/frontend/style/events.scss
2020-01-25 11:56:05 -08:00

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