Rev 3222 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
.card_list {
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
gap: 1rem;
}
.card_test_container {
width: calc(24% - 0.5rem);
@media (max-width: 576px) {
width: calc(50% - 0.5rem);
}
}
.card_test {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100%;
background-color: #fff;
border: 1px solid #e4e4e4;
text-align: start;
padding: 30px;
min-height: 55vh;
border-radius: 5px;
&_content {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
ul {
display: flex;
align-items: center;
justify-content: center;
margin: 0.5rem auto 0;
}
}