BROOKLYN: 2 pictures in a row for mobile view

How can I make the mobile view 2 pictures per row instead of 1?

@A1234

yes, please try code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/timber.scss.liquid->paste below code at the bottom of the file.
@media only screen and (max-width: 768px) {
#CollectionSection .grid-uniform {
    display: flex;
    flex-wrap: wrap;
}
#CollectionSection .grid-uniform .medium--one-half {
    width: 50%;
}
}