.yu-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap; }
  .yu-row.align-top {
    align-items: flex-start; }
  .yu-row.align-middle {
    align-items: center; }
  .yu-row.align-bottom {
    align-items: flex-end; }
  .yu-row.justify-start {
    justify-content: flex-start; }
  .yu-row.justify-center {
    justify-content: center; }
  .yu-row.justify-end {
    justify-content: flex-end; }
  .yu-row.justify-space-between {
    justify-content: space-between; }
  .yu-row.justify-space-around {
    justify-content: space-around; }
