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

_size.scss « mixins « scss « bootstrap « scss « assets « static - github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69e056d2c1ef94f63abe42f9fba78fbcd85feae0 (plain)
1
2
3
4
5
6
7
// Sizing shortcuts

@mixin size($width, $height: $width) {
  width: $width;
  height: $height;
  @include deprecate("`size()`", "v4.3.0", "v5");
}