change(ui) - user events visit event padding

This commit is contained in:
Shekar Siri 2023-05-04 13:51:19 +02:00
parent aaff6a040d
commit 48ffb903da
2 changed files with 2 additions and 3 deletions

View file

@ -70,14 +70,13 @@ class EventGroupWrapper extends React.Component {
<>
<div
className={cn(
'!py-1',
{
[stl.last]: isLastInGroup,
[stl.first]: event.type === TYPES.LOCATION,
[stl.dashAfter]: isLastInGroup && !isLastEvent
},
isLastInGroup && '!pb-2',
event.type === TYPES.LOCATION && '!pt-2 !pb-2'
event.type === TYPES.LOCATION && '!pb-2'
)}
>
{isFirst && isLocation && event.referrer && (

View file

@ -1,5 +1,5 @@
.first {
padding-top: 7px;
/* padding-top: 7px; */
border-radius: 0;
}