Files
dvcp_v2_wxcp_app/library/styles/common.scss
2024-10-31 14:34:57 +08:00

69 lines
950 B
SCSS

@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;
}