How can I modify the Turbo theme logo bar to scroll horizontally?

Amazing. I found logo-bar in the style sheet and increased the min-width: to a higher number to keep the logos from going onto a second line. I can’t seem to adjust the margin between the logos - the left and right margin seem to be overridden.

/* #Logo-list
================================================== */
.logo-bar {
  text-align: center;
  margin-bottom: 20px;
}
.logo-bar a {
  transition: ease all 0.6s;
}
.logo-bar a:hover {
  opacity: 0.6;
}

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 100px;
  width: 100px;
  margin-top: 20px;
}
@media only screen and (min-width: 1599px) {
  .logo-bar__item {
    margin-left: 25px;
    margin-right: 25px;
  }
}