Spaces:
Running
Running
.abbreviation_block { | |
width: 100%; | |
height: max-content; | |
margin-top: 15px; | |
.label { | |
display: flex; | |
margin-bottom: 10px; | |
} | |
.abbreviation_container { | |
display: flex; | |
justify-content: center; | |
gap: 10px; | |
.values { | |
width: 90%; | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
gap: 5px; | |
.values_optiuon { | |
display: flex; | |
width: 100%; | |
gap: 10px; | |
justify-content: space-between; | |
&:hover { | |
cursor: pointer; | |
} | |
.name { | |
width: 100%; | |
color: var(--text-0-color); | |
text-align: left; | |
border-radius: 10px; | |
padding: 5px; | |
border: 1px solid var(--hover-bg-color); | |
} | |
.name.checked { | |
border: 1px solid rgb(36, 44, 70); | |
background-color: var(--border-0-color); | |
} | |
.radio { | |
.with_icon_container { | |
border: 1px solid var(--white-color); | |
&:focus, | |
&:active { | |
border: 1px solid var(--white-color); | |
outline: none; | |
} | |
} | |
.input { | |
&:hover { | |
cursor: pointer; | |
} | |
} | |
display: flex; | |
align-items: center; | |
justify-content: flex-start; | |
padding-right: 20px; | |
} | |
} | |
} | |
} | |
} | |