Is it possible to set the value of a variable once, inside a single sass-breakpoint, rather than each time I use the variable?
In other words, I'd like to do this:
$tab: 600px;
$wp: 100%;
@include breakpoint($tab) {
    $wp: 95%;
}
.alpha {
    // ...
    width: $wp;
}
.beta {
    // ...
    width: $wp;
}
.gamma {
    // ...
    width: $wp;
}
... rather than this:
$tab: 600px;
$wp: 100%;
$wp-tab: 95%;
.alpha {
    // ...
    width: $wp;
    @include breakpoint($tab) {
        width: $wp-tab;
    }
}
.beta {
    // ...
    width: $wp;
    @include breakpoint($tab) {
        width: $wp-tab;
    }
}
.gamma {
    // ...
    width: $wp;
    @include breakpoint($tab) {
        width: $wp-tab;
    }
}
I don't think the first approach will work as is. Is there another way to achieve the same result? Is this approach a bad idea?