SASS/SCSS Starter Kit
The mixin circle($size) sets the size of the circle to the given size.
Shortcut: scss.mixin.circle
@mixin circle($size) {
height: $size;
width: $size;
border-radius: 99999px;
}
The mixin circle($size) sets the size of the circle to the given size.
Shortcut: scss.mixin.circle
@mixin circle($size) {
height: $size;
width: $size;
border-radius: 99999px;
}