mo-ku
5/16/2019 - 2:26 PM

the simplest grid

.photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.photos img {
  display: block;
  /* box-shadow: -1px 0px 0px rgba(0,0,0,0.06); */
  width: 100%;
}