@mixin base() {
    background-color: white;
    left: -2000px;
    padding: 20px 40px;
    position: absolute;
    top: 0;

    &:focus {
        left: 0;
    }
}

&__link {
    @include base;
}