@charset "UTF-8";
/**
 * YH-UI Sass Variables
 * 原具体的 CSS 变量输出规则 (:root, html.dark 等) 已移至 root.scss，以防止各组件样式编译时产生重复的全局变量 CSS 冗余。
 */
.yh-row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box;
}
.yh-row.is-justify-center {
  justify-content: center;
}

.yh-row.is-justify-end {
  justify-content: flex-end;
}

.yh-row.is-justify-space-between {
  justify-content: space-between;
}

.yh-row.is-justify-space-around {
  justify-content: space-around;
}

.yh-row.is-justify-space-evenly {
  justify-content: space-evenly;
}

.yh-row.is-align-middle {
  align-items: center;
}

.yh-row.is-align-bottom {
  align-items: flex-end;
}