chat/src/app/atoms/button/RadioButton.scss
Ajay Bura ea5b63af18 Add RadioButton component
Signed-off-by: Ajay Bura <ajbura@gmail.com>
2021-12-23 17:09:09 +05:30

24 lines
No EOL
454 B
SCSS

@use '../../partials/flex';
.radio-btn {
@extend .cp-fx__row--c-c;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: var(--bg-surface-low);
box-shadow: var(--bs-surface-border);
cursor: pointer;
&--active {
background-color: var(--bg-positive);
&::before {
content: '';
display: inline-block;
width: 16px;
height: 16px;
background-color: white;
border-radius: 50%;
}
}
}