Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/webview/common/cardItem.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ export default (_theme: Theme) =>
flexDirection: 'column'
},
helmCardHeader: {
paddingTop: '1.5rem!important',
borderBottom: '1px solid',
borderBottomColor: 'inherit',
height: 'auto',
Expand Down
4 changes: 2 additions & 2 deletions src/webview/helm-chart/app/cardItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export class CardItem extends React.Component<DevFileProps, {
alt={this.state.selectedVersion.icon + ' logo'}
className={this.props.cardItemStyle.cardImage}
style={{ margin: '0rem' }} />
<div style={{ margin: '0rem' }}>
<div style={{ marginTop: '0.6rem' }}>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are better ways to accomplish this than hardcoding the margin, such as flexbox. However, I think this is okay for the release.

<Typography variant='subtitle1'>
{
capitalizeFirstLetter(this.props.helmEntry.displayName)
Expand All @@ -326,7 +326,7 @@ export class CardItem extends React.Component<DevFileProps, {
installResponse.loadScreen && <LoadScreen title='Installation in Progress' type='circle' />
}
</div>
<div style={{float: 'right'}}>
<div style={{float: 'right', marginTop: '0.5rem'}}>
<Button
disabled={this.handleDisable() || installResponse.installed}
variant='outlined'
Expand Down