We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acdcfe5 commit 7f94a62Copy full SHA for 7f94a62
scss/_checkbox.scss
@@ -86,9 +86,9 @@
86
left: 4px;
87
border: none;
88
color: $checkbox-check-color;
89
+ content: '\2713';
90
font-weight: bold;
91
font-size: 20px;
- content: '\2713';
92
}
93
94
/* what the checkmark looks like when its checked */
@@ -107,11 +107,9 @@
107
108
/* position the checkbox to the left within an item */
109
.item-checkbox .checkbox {
110
- @include display-flex();
111
- @include align-items(center);
112
position: absolute;
113
- top: 0;
+ top: 50%;
114
left: $item-padding / 2;
115
z-index: $z-index-item-checkbox;
116
- height: 100%;
+ margin-top: (($checkbox-height + ($checkbox-height / 2)) / 2) * -1;
117
0 commit comments