2024-04-07 00:06:15 +08:00
|
|
|
/* global style scss */
|
|
|
|
|
// 左间距-行内文字
|
|
|
|
|
.margin-left-text {
|
|
|
|
|
margin-left: $margin-text;
|
|
|
|
|
}
|
|
|
|
|
// 右间距-行内文字
|
|
|
|
|
.margin-right-text {
|
|
|
|
|
margin-right: $margin-text;
|
|
|
|
|
}
|
2024-05-18 14:32:15 +08:00
|
|
|
|
|
|
|
|
.flex-row-between-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-middling {
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.row-start-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|