Skip to content

Commit

Permalink
fix: raw view css condense fix for line clamp (#5755)
Browse files Browse the repository at this point in the history
  • Loading branch information
vikrantgupta25 committed Aug 22, 2024
1 parent ab1caf1 commit 758b10f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/Logs/RawLogView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ function RawLogView({
$isActiveLog={isActiveLog}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
fontSize={fontSize}
>
<LogStateIndicator
type={logType}
Expand Down
16 changes: 11 additions & 5 deletions frontend/src/components/Logs/RawLogView/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const RawLogViewContainer = styled(Row)<{
$isReadOnly?: boolean;
$isActiveLog?: boolean;
$isHightlightedLog: boolean;
fontSize: FontSize;
}>`
position: relative;
width: 100%;
Expand All @@ -24,6 +25,13 @@ export const RawLogViewContainer = styled(Row)<{
.log-state-indicator {
margin: 4px 0;
${({ fontSize }): string =>
fontSize === FontSize.SMALL
? `margin: 1px 0;`
: fontSize === FontSize.MEDIUM
? `margin: 1px 0;`
: `margin: 2px 0;`}
}
${({ $isActiveLog }): string => getActiveLogBackground($isActiveLog)}
Expand All @@ -50,13 +58,8 @@ export const ExpandIconWrapper = styled(Col)`

export const RawLogContent = styled.div<RawLogContentProps>`
margin-bottom: 0;
display: flex !important;
align-items: center;
font-family: 'SF Mono', monospace;
font-family: 'Geist Mono';
font-size: 13px;
font-weight: 400;
line-height: 24px;
letter-spacing: -0.07px;
padding: 4px;
text-align: left;
Expand All @@ -73,6 +76,9 @@ export const RawLogContent = styled.div<RawLogContentProps>`
line-clamp: ${linesPerRow};
-webkit-box-orient: vertical;`};
font-size: 13px;
font-weight: 400;
line-height: 24px;
${({ fontSize }): string =>
fontSize === FontSize.SMALL
? `font-size:11px; line-height:16px; padding:1px;`
Expand Down

0 comments on commit 758b10f

Please sign in to comment.