/* STYLING FOR MESSAGE INDEX PAGE */

.message-index {
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

.messaging-widget {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.message-list {
  flex: auto 1 1;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: var(--semiquaver);
  padding: 0 var(--minim);
  margin-bottom: var(--quaver);
}
