14 lines
194 B
CSS
14 lines
194 B
CSS
.stats {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.7rem;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.stats {
|
|
gap: 1.4rem;
|
|
justify-content: center;
|
|
max-width: 32rem;
|
|
}
|
|
}
|