base_ui/assets/common/scss/components/_check.scss

35 lines
691 B
SCSS
Raw Normal View History

2025-02-01 09:34:55 +00:00
.check {
margin-top: 14px;
margin-bottom: 14px;
display: flex;
align-items: center;
margin-right: auto;
justify-content: flex-end;
&__item {
display: flex;
align-items: center;
height: 26px;
min-width: 56px;
&:not(:last-child) {
margin-left: 20px;
}
span {
display: flex;
margin-right: 6px;
}
}
&--link .check__item {
border-radius: 8px;
border: 1px solid #d4dce3;
padding: 0 8px;
display: flex;
justify-content: center;
align-items: center;
i {
font-weight: bold;
}
.text__red {
color: #d54b5e;
}
}
}