Remove comments

This commit is contained in:
Matt Rider 2019-06-12 15:59:33 -03:00
parent 70567857e8
commit aa6551e35d

View File

@ -170,24 +170,20 @@ export default {
background-color: $background-color-softest; background-color: $background-color-softest;
} }
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark { .checkbox-container input:checked ~ .checkmark {
background-color: $background-color-danger-active; background-color: $background-color-danger-active;
} }
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after { .checkmark:after {
content: ''; content: '';
position: absolute; position: absolute;
display: none; display: none;
} }
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after { .checkbox-container input:checked ~ .checkmark:after {
display: block; display: block;
} }
/* Style the checkmark/indicator */
.checkbox-container .checkmark:after { .checkbox-container .checkmark:after {
left: 6px; left: 6px;
top: 3px; top: 3px;