forked from Bunteshaus/bunteshaus.de
18 lines
245 B
SCSS
18 lines
245 B
SCSS
.two_lists {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
width: 98vw;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.two_lists {
|
|
flex-direction: row;
|
|
.gen_list {
|
|
width: 48%;
|
|
}
|
|
}
|
|
}
|