Skip to content

Commit

Permalink
chore: move style from tag to class
Browse files Browse the repository at this point in the history
  • Loading branch information
jarekdanielak committed Oct 14, 2024
1 parent 91f0815 commit f21be4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,16 @@
color: var(--literal-expression-properties-color);
}

.dmn-literal-expression-container .literal-expression-properties table {
.dmn-literal-expression-container .literal-expression-properties .variables-table {
border-spacing: 8px;
border-collapse: separate;
}

.dmn-literal-expression-container .literal-expression-properties table tr td:first-child {
.dmn-literal-expression-container .literal-expression-properties .variables-table tr td:first-child {
font-weight: bold;
}

.dmn-literal-expression-container .literal-expression-properties table tr td:last-child {
.dmn-literal-expression-container .literal-expression-properties .variables-table tr td:last-child {
min-width: 100px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default class LiteralExpressionPropertiesComponent extends Component {

return (
<div className="literal-expression-properties">
<table>
<table className="variables-table">
<tr>
<td>{ this._translate('Variable name:') }</td>
<td>
Expand Down

0 comments on commit f21be4d

Please sign in to comment.