Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/app/ExplorerContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,7 @@ export default function ExplorerContent() {
padding: "2px 4px",
borderRadius: "4px",
fontWeight: "bold",
fontSize: "1.1em",
}}
>
Compilation pipeline:
Expand All @@ -829,6 +830,8 @@ export default function ExplorerContent() {
padding: "2px 4px",
borderRadius: "4px",
fontWeight: "bold",
fontSize: "1.1em",
color: "#000",
}}
>
{getLabelForIR(irWin.selectedIR)}
Expand All @@ -842,8 +845,8 @@ export default function ExplorerContent() {
<React.Fragment key={i}>
<span
style={{
fontSize: "1.2em",
color: "#666",
fontSize: "1.4em",
color: "inherit",
}}
>
Expand All @@ -861,13 +864,15 @@ export default function ExplorerContent() {
display: "flex",
flexDirection: "column",
lineHeight: "1.2em",
fontSize: "1.1em",
color: "#000",
}}
>
{p.tool !== "user-tool" && <span>{p.tool}</span>}
<span
style={{
fontSize: "0.8em",
color: "#555",
color: "#000",
}}
>
{preview}
Expand All @@ -885,6 +890,7 @@ export default function ExplorerContent() {
marginLeft: 4,
padding: "2px 6px",
cursor: "pointer",
fontSize: "1.1em",
}}
>
🔍
Expand Down