/* Fix Segment 6 drafting/spy toolbar inside the 3-column chat composer. */
.composer > .s6-spy-bar {
  grid-column: 1 / -1;
  grid-row: auto;
  width: 100%;
  min-width: 0;
  margin: 0 0 2px;
}

/* Keep the toolbar usable without letting it squeeze the textarea/send controls. */
@media (max-width: 820px) {
  .composer > .s6-spy-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .composer > .s6-spy-bar::-webkit-scrollbar {
    display: none;
  }

  .composer > .s6-spy-bar > span,
  .composer > .s6-spy-bar > button {
    flex: 0 0 auto;
  }
}
