Skip to content

Commit

Permalink
Fixed tall class addition (#5376)
Browse files Browse the repository at this point in the history
  • Loading branch information
christof-wittreich authored Jul 30, 2024
1 parent 903b2e8 commit 364d3e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/js/containers/share.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ class ShareLinkContainer extends Component {
} = this.state;

return (
<div className={`share-body${activeTab === 'embed' ? '-tall' : ''}`}>
<div className={`share-body${activeTab === 'embed' ? ' tall' : ''}`}>
<ShareToolTips
activeTab={activeTab}
tooltipErrorTime={tooltipErrorTime}
Expand Down
6 changes: 3 additions & 3 deletions web/scss/features/share.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.share-body {
height: 108px;
}

.share-body-tall {
height: 148px;
&.tall {
height: 148px;
}
}

.share-nav-container {
Expand Down

0 comments on commit 364d3e9

Please sign in to comment.