Skip to content

Commit 34831ac

Browse files
fix: hover state css
1 parent 0d12321 commit 34831ac

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/components/app/details/app.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,23 @@
3030
padding: 0 0 8px 0;
3131
}
3232
}
33+
34+
.selected-app-row {
35+
.check-icon {
36+
display: block;
37+
}
38+
.delete-icon {
39+
display: none;
40+
use {
41+
fill: var(--R500);
42+
}
43+
}
44+
&:hover {
45+
.check-icon {
46+
display: none;
47+
}
48+
.delete-icon {
49+
display: block;
50+
}
51+
}
52+
}

0 commit comments

Comments
 (0)