mirror of
https://github.com/maciejpedzich/cats-album.git
synced 2024-11-27 14:25:47 +01:00
Increas card's box shadow radius on hover
This commit is contained in:
parent
1faa6e15ee
commit
f2a17219e5
@ -42,10 +42,14 @@ const { cat } = Astro.props;
|
||||
margin: 0.5rem 0;
|
||||
padding: 0;
|
||||
flex-direction: column;
|
||||
transition-property: transform;
|
||||
transition-duration: 300ms;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 10px var(--color-grey);
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
@ -66,8 +70,4 @@ const { cat } = Astro.props;
|
||||
width: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user