forked from Transparency/kgroad-frontend2
21 lines
269 B
SCSS
21 lines
269 B
SCSS
.create-report {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 40px;
|
|
h2 {
|
|
text-align: start;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.create-report {
|
|
gap: 30px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 550px) {
|
|
.create-report {
|
|
gap: 20px;
|
|
}
|
|
}
|