#github-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.github-header {
  font-size: 15pt;
}

.github-feed-items {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.github-feed-items:hover {
  overflow-y: scroll;
}

.github-feed-items:-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.me-icon {  
  --icon-size: 20px;
  border-radius: 12px;
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline;
}

.git-icon {
  --icon-size: 18px;
  width: var(--icon-size);
  height: var(--icon-size);
}

.repo-name-number {
  font-size: 12pt;
}

.github-item-row {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.github-item-title {
  font-size: 12pt;
}

.github-item-text {
  /* -webkit-line-clamp: 3;
  font-size: 10pt;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block; */

  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 10pt;
}
