- Add Step Progress Bar.

- Prefix partials with `_`.
This commit is contained in:
Leo
2023-06-10 18:46:58 -05:00
parent f6fa0d56ac
commit bba003edc9
6 changed files with 23 additions and 0 deletions

20
scss/elements/_radio.scss Normal file
View File

@@ -0,0 +1,20 @@
.essence-radio {
margin: 0.5rem 0;
padding-left: 0;
.form-check-input[type=radio] {
display: none;
}
label {
width: 100%;
padding: 0.5rem 1rem;
border: 1px solid $gray-300;
border-radius: 0.25rem;
}
.form-check-input[type=radio]:checked + label {
background-color: $primary-50;
border: 1px solid $primary;
}
}