Skip to content

Commit

Permalink
Fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
fxedel committed Oct 8, 2017
1 parent 2ea4722 commit c0c2399
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "toggle-icon",
"version": "1.2.0",
"version": "1.2.1",
"authors": [
"Felix Edelmann"
],
Expand Down
6 changes: 3 additions & 3 deletions toggle-icon.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
@apply --toggle-icon;
}

:host[checked] {
:host([checked]) {
@apply --toggle-icon-checked;
@apply --toggle-icon-active;
}
Expand All @@ -93,8 +93,8 @@
top: 0;
}

:host:not([checked]) #checked,
:host[checked] #unchecked {
:host(:not([checked])) #checked,
:host([checked]) #unchecked {
opacity: 0;
pointer-events: none;
}
Expand Down

0 comments on commit c0c2399

Please sign in to comment.