ui: tweaks
This commit is contained in:
parent
c2949e6d17
commit
4ac61747a1
|
@ -1,6 +1,16 @@
|
||||||
:scope {
|
:scope {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label {
|
||||||
|
color: #999;
|
||||||
|
font-size: 0.8em;
|
||||||
|
left: -2.5em;
|
||||||
|
position: absolute;
|
||||||
|
writing-mode: vertical-lr;
|
||||||
|
top: -1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.key {
|
.key {
|
||||||
|
@ -64,5 +74,8 @@
|
||||||
|
|
||||||
.op {
|
.op {
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
margin: 0.125em;
|
margin-right: 0.125em;
|
||||||
|
&:last-of-type {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,9 @@ const Expression = (props) => {
|
||||||
const opsDescription = descriptionFromOps(context, ops);
|
const opsDescription = descriptionFromOps(context, ops);
|
||||||
return (
|
return (
|
||||||
<div className="expression">
|
<div className="expression">
|
||||||
|
{isStatement && (
|
||||||
|
<div className="label">{assign ? 'assign' : 'invoke'}</div>
|
||||||
|
)}
|
||||||
{ops.map((op, i) => (
|
{ops.map((op, i) => (
|
||||||
// eslint-disable-next-line react/no-array-index-key
|
// eslint-disable-next-line react/no-array-index-key
|
||||||
<span className="op" key={i}>
|
<span className="op" key={i}>
|
||||||
|
|
|
@ -5,5 +5,5 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
margin-right: 0.25em;
|
margin-right: 0.125em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user