26 lines
No EOL
410 B
CSS
26 lines
No EOL
410 B
CSS
.splitter {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
flex-wrap: nowrap;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.splitter-item {
|
|
width: 50%;
|
|
}
|
|
|
|
@media screen and (max-width: 745px) {
|
|
.splitter {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.splitter-item {
|
|
width: initial;
|
|
}
|
|
|
|
.splitter-item.card-image {
|
|
order: -1;
|
|
}
|
|
} |