Skip to content

Commit 0113703

Browse files
authored
Merge pull request #3488 from owenconti/bug/3480-model-description-over-the-edge
Fixes #3480 - Overflowing model description.
2 parents bc62c1c + 859ae1f commit 0113703

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/core/components/object-model.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default class ObjectModel extends Component {
5959
}
6060
<span className="inner-object">
6161
{
62-
<table className="model" style={{ marginLeft: "2em" }}><tbody>
62+
<table className="model"><tbody>
6363
{
6464
!description ? null : <tr style={{ color: "#999", fontStyle: "italic" }}>
6565
<td>description:</td>

src/style/_table.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ table
1919

2020
&:first-of-type
2121
{
22-
width: 100px;
23-
padding: 0;
22+
width: 124px;
23+
padding: 0 0 0 2em;
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)