cta boxes hover state

This commit is contained in:
Ezekiel Aquino
2018-12-14 15:36:42 +01:00
parent 51def6ee6b
commit 41ec26c927
2 changed files with 5 additions and 5 deletions

View File

@@ -50,11 +50,6 @@ const fadeInOut = keyframes`
const Bubble = styled.g`
animation: ${scale} 4s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform-origin: 50% 50%;
path,
circle {
fill: ${props => props.theme.lightBgColor};
}
`;
const Rays = styled.g`

View File

@@ -76,6 +76,7 @@ const Wrap = styled.div`
justify-content: center;
align-items: center;
text-align: center;
transition: background-color 0.25s;
background-color: ${props => props.theme.lightBgColor};
cursor: pointer;
@@ -88,6 +89,10 @@ const Wrap = styled.div`
width: 100%;
margin-top: 30px;
}
&:hover {
background-color: #002d28;
}
`;
const Title = styled.h2`