持续集成分支

This commit is contained in:
aixianling
2024-10-31 14:34:57 +08:00
parent 6a833be062
commit 8c56cf808b
2165 changed files with 4116 additions and 8716 deletions

View File

@@ -0,0 +1,68 @@
@import '~uview-ui/index.scss';
@import "./ckeditor";
@import "./party";
@import "./iconfont";
@font-face {
font-family: DIN;
src: url("https://cdn.cunwuyun.cn/fonts/DIN Alternate Bold.ttf");
}
/**
常用内外边距样式
*/
@each $padMar, $pm in (mar:margin, pad:padding) {
@each $pos, $p in (l:left, r:right, t:top, b:bottom) {
@each $v in (8, 10, 16, 32, 64, 96) {
.#{$padMar}-#{$pos+$v} {
#{$pm}-#{$p}: #{$v}px
}
}
}
}
.avatar {
width: 120px;
height: 120px;
flex-shrink: 0;
}
.circle {
border-radius: 50%;
overflow: hidden;
}
div[flex],.flex {
display: flex;
align-items: center;
&.spb {
justify-content: space-between;
}
&.wrap {
flex-wrap: wrap;
}
&.column {
flex-direction: column;
}
&.start {
align-items: flex-start;
}
}
div[shrink] {
flex-shrink: 0;
}
.fill {
flex: 1;
min-width: 0;
min-height: 0;
}
.t-center {
text-align: center;
}