Merge pull request #281 from dbaq/master

fix missing right padding for .item with .item-icon-right
This commit is contained in:
Adam Bradley
2013-12-06 20:10:35 -08:00

View File

@@ -263,8 +263,12 @@ button.item.item-complex {
}
}
.item-icon-right .icon {
right: $item-padding / 2;
.item-icon-right {
padding-right: ($item-padding * 3);
.icon {
right: $item-padding / 2;
}
}
.item-icon-left.item-icon-right .icon:first-child {