Skip to content

Commit 0be3b3f

Browse files
committed
cursor hover fixed
Signed-off-by: Wyllie Fang <wylliefang@gmail.com>
1 parent c0b6648 commit 0be3b3f

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

src/components/Academy/Learners-Section/LearnerSection.js

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,6 @@ const LearnerSectionWrapper = styled.section`
9595
border-radius: 12px;
9696
border: ${props => props.isDark ? "1px solid rgba(255, 255, 255, 0.2)" : "1px solid rgba(0, 179, 159, 0.1)"};
9797
box-shadow: ${props => props.isDark ? "0 8px 32px rgba(0, 0, 0, 0.3)" : "0 4px 12px rgba(0, 0, 0, 0.1)"};
98-
transition: all 0.3s ease;
99-
cursor: pointer;
100-
101-
&:hover {
102-
transform: translateY(-5px) scale(1.02);
103-
background: ${props => props.isDark ? "rgba(0, 179, 159, 0.15)" : "rgba(0, 179, 159, 0.05)"};
104-
border-color: rgba(0, 179, 159, 0.4);
105-
box-shadow: ${props => props.isDark ? "0 12px 40px rgba(0, 179, 159, 0.2)" : "0 8px 25px rgba(0, 179, 159, 0.2)"};
106-
}
10798
10899
.stat-number {
109100
display: block;
@@ -115,21 +106,11 @@ const LearnerSectionWrapper = styled.section`
115106
animation: pulse 2s infinite;
116107
}
117108
118-
&:hover .stat-number {
119-
transform: scale(1.1);
120-
color: #00d3a9;
121-
}
122-
123109
.stat-label {
124110
display: block;
125111
font-size: 0.9rem;
126112
text-transform: uppercase;
127113
letter-spacing: 0.5px;
128-
transition: color 0.3s ease;
129-
}
130-
131-
&:hover .stat-label {
132-
color: #00b39f;
133114
}
134115
135116
@keyframes pulse {

0 commit comments

Comments
 (0)