mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-11-29 02:45:40 -05:00
7 lines
98 B
SCSS
7 lines
98 B
SCSS
|
// Sizing shortcuts
|
||
|
|
||
|
@mixin size($width, $height: $width) {
|
||
|
width: $width;
|
||
|
height: $height;
|
||
|
}
|