boluo-app-main/src/components/picker-toolbar/index.less
2025-03-31 22:34:22 +08:00

37 lines
665 B
Plaintext

@import '@/styles/variables.less';
.picker-toolbar {
width: 100%;
padding: 16px 24px;
border-top: solid 1px #E0E0E0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
.button(@borderColor) {
width: calc(50% - 36px);
height: 80px;
line-height: 78px;
border-radius: 48px;
padding: 0;
margin: 0;
border: solid 1px @borderColor;
}
&__button-cancel {
.button(#E0E0E0);
margin-right: 24px;
color: @blColor;
background: #FFFFFF;
&::after {
border-color: transparent
}
}
&__button-confirm {
.button(@blHighlightColor);
color: #FFFFFF;
background: @blHighlightColor;
}
}