@mixin base() {
    border-radius: 5px;
}


&__feedback-content {
    @include base;

    &--negative {
        @include base;

        background-color: $component-content-negative-background;
        color: $component-content-negative-text;
    }

    &--positive {
        @include base;

        background-color: $component-content-positive-background;
        color: $component-content-positive-text;
    }
}