.components-information-container {
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  // justify-content: space-around;
  & > div {
    display: flex;
    width: 25%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    & > img {
      width: 64px;
      height: 64px;
      border-radius: 4px;
      object-fit: cover;
    }
    & > div {
      width: 100%;
      text-align: center;
      padding: 8px;
      color: #616161;
      font-size: 14px;
      line-height: auto;
      // white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
  }
}
