nws-site/src/components/Blog.css
2022-10-23 12:42:04 -05:00

11 lines
180 B
CSS

.blog-card {
transition: 1s;
width: 80%;
background-color: #eee;
border-radius: 20px;
overflow: clip;
}
.blog-card:hover {
transform: translateY(-10px);
}