bx-1379-redesign #15
|
@ -107,6 +107,7 @@ $boxShadow: 0px 0px 8px rgba(0, 0, 0, .25);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
margin-top: 1.125rem;
|
margin-top: 1.125rem;
|
||||||
padding-left: 2rem;
|
padding-left: 2rem;
|
||||||
|
scrollbar-gutter: stable;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -130,9 +131,12 @@ $boxShadow: 0px 0px 8px rgba(0, 0, 0, .25);
|
||||||
|
|
||||||
&-list {
|
&-list {
|
||||||
&-item {
|
&-item {
|
||||||
|
font-size: 1.25rem;
|
||||||
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-right: 0.25rem;
|
margin-right: 0.25rem;
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
|
||||||
input[type=radio],
|
input[type=radio],
|
||||||
input[type=checkbox] {
|
input[type=checkbox] {
|
||||||
|
@ -141,6 +145,30 @@ $boxShadow: 0px 0px 8px rgba(0, 0, 0, .25);
|
||||||
label {
|
label {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
$r: 0.5rem;
|
||||||
|
&:before,
|
||||||
|
&::after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
background-color: var(--primary-color);
|
||||||
|
position: absolute;
|
||||||
|
left: -1.5rem;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
width: $r;
|
||||||
|
height: $r;
|
||||||
|
border-radius: 50%;
|
||||||
|
top: calc(50% - 0.125rem)
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
width: 0.125rem;
|
||||||
|
top: 50%;
|
||||||
|
bottom: -50%;
|
||||||
|
transform: translate3d((0.125rem)*1.5, -100%, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue