Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
@mixin angled-top-left( $background-color: $primary-brand-color ) {
@include angled( $background-color: $background-color, $top: true, $bottom: false, $reversed: false );
}
@mixin angled-top-right( $background-color: $primary-brand-color ) {
@include angled( $background-color: $background-color, $top: true, $bottom: false, $reversed: true );
}
@mixin angled-bottom-left( $background-color: $primary-brand-color ) {
@include angled( $background-color: $background-color, $top: false, $bottom: true, $reversed: true );
}
@mixin angled-bottom-right( $background-color: $primary-brand-color ) {
@include angled( $background-color: $background-color, $top: false, $bottom: true, $reversed: false );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment