.date {
  text-align: center;
  align-self: center;
  padding: 10px;
  border-radius: 2px 2px 0px 0px;
  margin: 30px 0;
  position: relative;
  color: white;

  // for tooltip
  min-width: 100px;

  &::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    top: 10%;
    left: 0;
    transform: scaleX(2.5);
    pointer-events: none;
    border-radius: 50%;

    background: var(--primary-color);
    opacity: 0.2;

    filter: blur(7px);
  }
}

Synonyms

pussy-ts/src/features/sense/ui/SenseViewer/Messages/DateTitle/DateTitle.module.scss

Neighbours