Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_size.scss « mixins « scss « assets - github.com/uicardiodev/hugo-lime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9dd48e8dfdacc6104c2cf360ea30bb65970a32b (plain)
1
2
3
4
5
6
// Sizing shortcuts

@mixin size($width, $height: $width) {
  width: $width;
  height: $height;
}