mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-08 15:00:59 +00:00
10 lines
147 B
SCSS
10 lines
147 B
SCSS
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
@mixin square($size) {
|
|
@include size($size, $size);
|
|
}
|