Polish UI

This commit is contained in:
BorysLevytskyi
2023-05-12 14:05:46 +02:00
parent 585d3f342f
commit 77a1651006
2 changed files with 2 additions and 4 deletions

View File

@@ -118,7 +118,7 @@ class ExpressionElementTableRow extends React.Component<ExpressionElementRowProp
return <tr className={"row-with-bits " + css}>
<td className="sign">{sign}</td>
<td className="label">
<span>{this.getLabel()}</span>
{this.getLabel()}
</td>
<td className="bin">
<BinaryStringView
@@ -143,7 +143,7 @@ class ExpressionElementTableRow extends React.Component<ExpressionElementRowProp
: null;
}
getLabel(): string {
getLabel(): string {
// For expressions like |~2
// TODO: find a better way...

View File

@@ -30,8 +30,6 @@ code { font-size: 1.2em; font-weight: bold; }
background: rgba(0, 0, 0, 0);
}
.label { width: 5em; overflow: visible;}
.label span {position: global;}
.hidden { display: none;}
.result { margin: 10px 10px 30px; }