2025-03-26 10:01:46 +07:00

17 lines
488 B
SCSS
Vendored

@mixin ribbon-default($bg-color, $color, $border-width, $border-radius, $padding) {
background-color: $bg-color;
color: $color;
padding: $padding;
&:after {
content: '';
position: absolute;
border: $border-width solid;
@if $enable-rounded == true {
border-radius: $border-radius;
}
border-color: $bg-color;
border-top-color: transparent;
border-right-color: transparent;
@content;
}
}