Skip to content

Commit 3b8bdab

Browse files
committed
fix: enhance hover effects for feed items and block rows
1 parent c260fb6 commit 3b8bdab

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/features/feed/components/feed.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,20 @@
1919
background-color: var(--card-background-color);
2020
border: 1px solid var(--card-border-color);
2121
border-radius: 10px;
22+
transition: all 0.2s ease-in-out;
23+
&:hover {
24+
opacity: 0.9;
25+
transform: scale(1.01);
26+
}
2227
}
2328
.feedItemSource {
2429
width: 12px;
2530
height: 12px;
2631
}
2732

33+
.blockRow:hover {
34+
background-color: transparent;
35+
}
2836
.loading {
2937
display: flex;
3038
flex-direction: column;

0 commit comments

Comments
 (0)