Compare commits

...

2 Commits

Author SHA1 Message Date
Aditya Singh
8715fc8b5a Merge branch 'main' into feat/table-escape-char-support 2026-04-10 15:04:27 +05:30
aks07
b68d36c4a2 feat: add support for \n and \t in table view logs 2026-04-10 14:54:51 +05:30

View File

@@ -22,6 +22,7 @@ export const TableBodyContent = styled.div<TableBodyContentProps>`
-webkit-line-clamp: ${(props): number => props.linesPerRow};
line-clamp: ${(props): number => props.linesPerRow};
-webkit-box-orient: vertical;
white-space: pre-wrap;
${({ fontSize }): string =>
fontSize === FontSize.SMALL
? `font-size:11px; line-height:16px;`