ebike-plus-ui/src/style/global-style.scss

31 lines
492 B
SCSS
Raw Normal View History

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