.containerTotalCount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--primary-color);

}

.countValue {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;
  border-radius: 50%;

  background-color: #000;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25);

  text-align: center;
  text-shadow: 0px 0px 5px var(--primary-color);
  font-size: 16px;
}

.countText {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

Synonyms

pussy-ts/src/pages/teleport/mainScreen/components/TotalCount/TotalCount.module.scss

Neighbours