$sizes: 45, 90, 135, 180, 225, 270, 315;

@each $size in $sizes {

  .rotate-#{$size} {
    transform: rotate(#{$size}deg);
  }

}
