TP-48565 | comments resolved

This commit is contained in:
AyushRanjan
2024-01-03 12:29:17 +05:30
parent b8e50ad80e
commit 83cfe0e86c
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
:export {
goToLinkColor: #0276fe;
}
.table-wrapper {
box-sizing: border-box;
padding-bottom: 24px;

View File

@@ -27,7 +27,7 @@ const HyperlinkCellRenderer: FC<HyperlinkCellRendererProps> = ({
{value}
</div>
<div className={styles['go-to-link-icon']}>
<GoToLinkIcon color="#0276FE" />
<GoToLinkIcon color={styles.goToLinkColor} />
</div>
</div>
);

View File

@@ -67,7 +67,7 @@ const TicketNameCell: FC<TicketNameCellProps> = ({
{tickerName}
</div>
<div className={styles['go-to-link-icon']}>
<GoToLinkIcon color="#0276FE" />
<GoToLinkIcon color={styles.goToLinkColor} />
</div>
</div>
</div>