@use "./colors" as *;

@mixin enableDisableBtnStyle() {
    background-color: white;
    text-decoration: underline;
    color: $primary-color;
    border: none;

    &:hover:enabled {
        color: $charcoal;
    }

    &:disabled {
        color: $charcoal;
        opacity: 0.5;
        cursor: not-allowed;
    }
}
