question-sidebar {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
question-sidebar > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.qsb-app-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
#question-sidebar-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 6px 8px 12px;
}
#question-sidebar-list::-webkit-scrollbar {
  width: 4px;
}
#question-sidebar-list::-webkit-scrollbar-track {
  background: transparent;
}
#question-sidebar-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
@media (max-width: 768px) {
  #sidebar-right #question-sidebar-list {
    max-height: calc(min(50vh, 420px) - 76px);
  }
}
