Filip Rojek
ccbb0eac64
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 12s
22 lines
381 B
CSS
22 lines
381 B
CSS
.dashboard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.card-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.card {
|
|
background-color: var(--clr-secondary);
|
|
border-radius: var(--border-radious);
|
|
border: var(--borderWidth-thin) solid var(--clr-border);
|
|
width: 18rem;
|
|
padding: 1rem;
|
|
}
|