50 lines
837 B
Plaintext
50 lines
837 B
Plaintext
@import '@/styles/variables.less';
|
|
|
|
.bl-select {
|
|
background: #FFFFFF;
|
|
|
|
&__title {
|
|
font-size: 28px;
|
|
line-height: 30px;
|
|
font-weight: 400;
|
|
color: @blColorG1;
|
|
padding: 0 24px;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
&__items-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
&__salary-item {
|
|
width: 100%;
|
|
height: 96px;
|
|
font-size: 32px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding: 0 24px;
|
|
flex: 0 0 96px;
|
|
|
|
&.selected {
|
|
color: @blHighlightColor;
|
|
background: #6D3DF514;
|
|
}
|
|
}
|
|
|
|
&__select-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
&__with-popup {
|
|
background: #FFFFFF;
|
|
border-top-left-radius: 24px;
|
|
border-top-right-radius: 24px;
|
|
}
|
|
}
|