You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
851 B
SCSS

.product-card {
display: flex;
flex-direction: column;
height: 95%;
margin: 10%;
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);
transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card-content {
height: 100%;
}
.card-img-container {
.card-img {
max-width: 100%;
height: auto;
}
}
.card-details-container {
height: max-content;
padding-top: 15%;
}
.card-info {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80%;
}
.card-buttons {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 20%;
padding-top: 20%;
button {
margin: 2%;
width: 50%;
}
}