fuel-stats/public/css/dashboard.css

22 lines
381 B
CSS
Raw Permalink Normal View History

.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);
2025-01-05 21:24:55 +01:00
width: 18rem;
padding: 1rem;
}