これを使えばコード量が押さえられる
sass each文
$row: 22, 43, 64, 85, 106, 127, 148, 169, 190, 211, 232, 253, 274, 295, 316, 337, 358, 379, 400, 421;
@each $rows in $row {
div.rogic-#{$rows} {
align-content: center;
justify-content: flex-end;
align-items: center;
}
}
。。。
div.rogic-22 {
align-content: center;
justify-content: flex-end;
align-items: center;
}
div.rogic-43 {
align-content: center;
justify-content: flex-end;
align-items: center;
}
9