16 lines
288 B
CSS
16 lines
288 B
CSS
.linkCard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 37rem;
|
|
width: 100%;
|
|
margin-right: 1.6rem;
|
|
border-radius: 1.6rem;
|
|
gap: 1rem;
|
|
padding: 1.6rem;
|
|
|
|
background-color: var(--Base-Fill-Normal);
|
|
text-align: center;
|
|
}
|