
.gg-signal {
    display: block;
    box-sizing: border-box;
    width: 2px;
    border-radius: 4px;
    background: currentColor;

    &::after, &::before {
      display: block;
      box-sizing: border-box;
      width: 2px;
      border-radius: 4px;
      background: currentColor;
    }

    position: relative;
    transform: scale(var(--ggs, 1));
    height: 8px;

    &::after {
      content: "";
      position: absolute;
    }

    &::before {
      content: "";
      position: absolute;
      height: 12px;
      left: 4px;
      bottom: 0;
    }

    &::after {
      height: 4px;
      left: -4px;
      bottom: 0;
    }
  }
