- Add Step Progress Bar.
- Prefix partials with `_`.
This commit is contained in:
20
scss/elements/_radio.scss
Normal file
20
scss/elements/_radio.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user