Fix RadioButton style

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura
2021-12-24 15:03:57 +05:30
parent 0f963a93f1
commit 7750366654
2 changed files with 17 additions and 13 deletions

View File

@@ -2,23 +2,25 @@
.radio-btn {
@extend .cp-fx__row--c-c;
width: 24px;
height: 24px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: var(--bg-surface-low);
box-shadow: var(--bs-surface-border);
background-color: var(--bg-surface-border);
border: 2px solid var(--bg-surface-border);
cursor: pointer;
&::before {
content: '';
display: inline-block;
width: 12px;
height: 12px;
background-color: var(--bg-surface-border);
border-radius: 50%;
}
&--active {
background-color: var(--bg-positive);
border: 2px solid var(--bg-positive);
&::before {
content: '';
display: inline-block;
width: 16px;
height: 16px;
background-color: white;
border-radius: 50%;
background-color: var(--bg-positive);
}
}
}