Skip to content

Commit

Permalink
Merge pull request #3488 from owenconti/bug/3480-model-description-ov…
Browse files Browse the repository at this point in the history
…er-the-edge

Fixes #3480 - Overflowing model description.
  • Loading branch information
shockey authored Aug 4, 2017
2 parents bc62c1c + 859ae1f commit 0113703
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/components/object-model.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default class ObjectModel extends Component {
}
<span className="inner-object">
{
<table className="model" style={{ marginLeft: "2em" }}><tbody>
<table className="model"><tbody>
{
!description ? null : <tr style={{ color: "#999", fontStyle: "italic" }}>
<td>description:</td>
Expand Down
4 changes: 2 additions & 2 deletions src/style/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ table

&:first-of-type
{
width: 100px;
padding: 0;
width: 124px;
padding: 0 0 0 2em;
}
}
}
Expand Down

0 comments on commit 0113703

Please sign in to comment.