Skip to content

Commit

Permalink
fix(icon): bad corner position when using some icons in group
Browse files Browse the repository at this point in the history
  • Loading branch information
prudho committed Oct 17, 2018
1 parent e09a4ed commit 3829c6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/definitions/elements/icon.less
Original file line number Diff line number Diff line change
Expand Up @@ -532,25 +532,25 @@ i.icons .corner.icon {
font-size: @cornerIconSize;
text-shadow: @cornerIconShadow;
}
i.icons .top.right.corner.icon {
i.icons .icon.corner[class*="top right"] {
top: 0;
left: auto;
right: 0;
bottom: auto;
}
i.icons .top.left.corner.icon {
i.icons .icon.corner[class*="top left"] {
top: 0;
left: 0;
right: auto;
bottom: auto;
}
i.icons .bottom.left.corner.icon {
i.icons .icon.corner[class*="bottom left"] {
top: auto;
left: 0;
right: auto;
bottom: 0;
}
i.icons .bottom.right.corner.icon {
i.icons .icon.corner[class*="bottom right"] {
top: auto;
left: auto;
right: 0;
Expand Down

0 comments on commit 3829c6b

Please sign in to comment.