Skip to content

Commit

Permalink
fix(OperationCell): increase font weight for operation name (#1825)
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug authored Jan 15, 2025
1 parent 33ab5de commit 2e618f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ export function OperationCell<TData>({row, depth = 0, params}: OperationCellProp
<div className={block('operation-name-content')}>
{/* wrapper to inline elements */}
<div>
{name}&nbsp;
<span className={block('operation-name')}>{name}</span>
&nbsp;
<OperationParams params={operationParams} />
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
&__operation-params {
color: var(--g-color-text-secondary);
}
&__operation-name {
font-weight: 500;
}
&__operation-name {
position: relative;

Expand Down

0 comments on commit 2e618f4

Please sign in to comment.