forked from Transparency/kgroad-frontend2
26 lines
328 B
SCSS
26 lines
328 B
SCSS
.statistics {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
h2 {
|
|
width: fit-content;
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.statistics {
|
|
h2 {
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 550px) {
|
|
.statistics {
|
|
h2 {
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
}
|