@mixin containerLink() {
    &::after {
        content: '';
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        width: 100%;
        @content;
    }
}
