mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-13 03:03:54 +01:00
6 lines
138 B
SCSS
6 lines
138 B
SCSS
|
@mixin borderRadius($property) {
|
||
|
-webkit-border-radius: $property;
|
||
|
-moz-border-radius: $property;
|
||
|
border-radius: $property;
|
||
|
}
|