Skip to content

Commit

Permalink
fix(ui): fixed width button (#6883)
Browse files Browse the repository at this point in the history
Signed-off-by: Tianchu Zhao <evantczhao@gmail.com>
  • Loading branch information
tczhao authored and alexec committed Nov 17, 2021
1 parent e5dc961 commit ba4ffdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ui/src/app/shared/components/graph/graph-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,16 @@ export const GraphPanel = (props: Props) => {
]}
/>
<a onClick={() => setHorizontal(s => !s)} title='Horizontal/vertical layout'>
<i className={`fa ${horizontal ? 'fa-long-arrow-alt-right' : 'fa-long-arrow-alt-down'}`} />
<i className={`fa ${horizontal ? 'fa-long-arrow-alt-right' : 'fa-long-arrow-alt-down'} fa-fw`} />
</a>
<a onClick={() => setNodeSize(s => s * 1.2)} title='Zoom in'>
<i className='fa fa-search-plus' />
<i className='fa fa-search-plus fa-fw' />
</a>
<a onClick={() => setNodeSize(s => s / 1.2)} title='Zoom out'>
<i className='fa fa-search-minus' />
<i className='fa fa-search-minus fa-fw' />
</a>
<a onClick={() => setFast(s => !s)} title='Use faster, but less pretty renderer' className={fast ? 'active' : ''}>
<i className='fa fa-bolt' />
<i className='fa fa-bolt fa-fw' />
</a>
{props.options}
<div className='node-search-bar'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class WorkflowDagRenderOptionsPanel extends React.Component<WorkflowDagRe
})
}
title='Collapse all nodes'>
<i className='fa fa-compress' data-fa-transform='rotate-45' />
<i className='fa fa-compress fa-fw' data-fa-transform='rotate-45' />
</a>
<a
onClick={() =>
Expand All @@ -27,7 +27,7 @@ export class WorkflowDagRenderOptionsPanel extends React.Component<WorkflowDagRe
})
}
title='Expand all nodes'>
<i className='fa fa-expand' data-fa-transform='rotate-45' />
<i className='fa fa-expand fa-fw' data-fa-transform='rotate-45' />
</a>
</>
);
Expand Down

0 comments on commit ba4ffdf

Please sign in to comment.