Space with a:after

HTML

<div class="menu-title">
  <h6>
    <a href="some-url">Notifications</a>
  </h6>
</div>

SCSS

.menu-title {
  h6 {
    font-size : 1.2em;
    display : block;
    transition : opacity 0.4s ease 0.4s;
    a {
      color : #000000;
      position : relative;
      text-decoration: none;
      &:after {
        position : absolute;
        top : -1px;
        right : -15px;
        content : ">";
        transition : transform 0.4s ease, opacity 0.4s ease;
      }
      &:hover {
        &:after {
          transform : translateX(10px);
          opacity : 0.6;
        }
      }
    }
  }
}