.gg-git-branch {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 2px;
    height: 14px;
    background: currentColor;

    &::after {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
    }

    &::before {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      border-right: 2px solid;
      border-bottom: 2px solid;
      border-bottom-right-radius: 4px;
      bottom: 0;
      width: 8px;
      height: 6px;
      left: 0;
    }

    &::after {
      width: 4px;
      height: 4px;
      background: currentColor;
      box-shadow: 0 12px 0 0, 6px 6px 0 0;
      border-radius: 100%;
      left: -1px;
      top: -1px;
    }
  }