Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Protocol-designer, components, step-generation): multi tiprack support #13166

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
remove unnecessary styling
  • Loading branch information
jerader committed Jul 26, 2023
commit 3920f162acb0abcd3a4a3fd492bffdc85182f3a0
4 changes: 1 addition & 3 deletions components/src/instrument/InfoItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ export function InfoItem(props: InfoItemProps): JSX.Element {
return (
<div className={className}>
{title != null ? <h2 className={styles.title}>{title}</h2> : null}
<span className={styles.value} style={{ paddingBottom: '4px' }}>
{value}
</span>
<span className={styles.value}>{value}</span>
</div>
)
}
Loading