Skip to content

Commit

Permalink
fix sessionactivity overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Nov 26, 2024
1 parent dfc13ce commit d800b42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
}

.row {
display: flex;
display: grid;
grid-template-columns: max-content max-content 1fr;
align-items: center;
gap: 20px;
}
Expand All @@ -15,10 +16,6 @@
width: 150px;
}

.value {
white-space: nowrap;
}

.header {
font-weight: bold;
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function SessionActivity({
</StatusLight>
</div>
<Icon>{eventName ? <Icons.Bolt /> : <Icons.Eye />}</Icon>
<div className={styles.value}>{eventName || urlPath}</div>
<div>{eventName || urlPath}</div>
</div>
</>
);
Expand Down

0 comments on commit d800b42

Please sign in to comment.