Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created April 2, 2024 13:17
Show Gist options
  • Save jensgro/a131865ffec3580aafa5ccd649a05734 to your computer and use it in GitHub Desktop.
Save jensgro/a131865ffec3580aafa5ccd649a05734 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@mixin br($br: false, $number: false) {
@if $br {
@if $number {
border-radius: $br * 1px;
} @else {
border-radius: $br;
}
}
}
.card {
@include br(80px);
}
.test {
@include br(4);
}
.test2 {
@include br();
}
.card {
border-radius: 80px;
}
.test {
border-radius: 4;
}
{
"sass": {
"compiler": "dart-sass/1.32.12",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment