Skip to content

通用

待补充

按钮与 ICON
确认 编辑、新增、删除、审核、列表、下载、查看、取消(重置)

主色

scss
@primary: #4b91eb;
@success: #24b145;
@info: #1aacda;
@warning: #ff8517;
@danger: #ee3d3d;

间距类

  • 设置间距时不要写具体样式,直接添加样式类如 class=“mb-lg”
  • mb 表示 margin-bottom,ml 表示 margin-left,mr 表示 margin-right,mt 表示 margin-top。pb、pt、pl、pr 表示 padding,用法同上
  • sm=4px,lg 是 12px,xl 是 24px,默认是 8px
scss
.mb0 {
  margin-bottom: 0;
}
.mb-sm {
  margin-bottom: 4px;
}
.mb {
  margin-bottom: 8px;
}
.mb-lg {
  margin-bottom: 12px;
}
.mb-xl {
  margin-bottom: 24px;
}