Skip to content

Commit 61c7bb2

Browse files
committed
fix: make clear button more visible
1 parent 7f32ab8 commit 61c7bb2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/containers/Inspector.tsx

+9-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,15 @@ const Inspector: React.FC<IProps> = (props) => {
630630
<>
631631
{logs.length > 0 &&
632632
<Button
633-
style={{ position: "absolute", top: "5px", right: "50px", zIndex: 1 }}
633+
variant="contained"
634+
style={{
635+
cursor: "pointer",
636+
position: "absolute",
637+
top: "5px",
638+
right: "50px",
639+
zIndex: 2,
640+
background: "rgba(255,255,255,0.2)"
641+
}}
634642
onClick={handleClearButton}>
635643
Clear
636644
</Button>

0 commit comments

Comments
 (0)