fix missing right padding for .item with .item-icon-right

This commit is contained in:
dbaq
2013-12-06 17:15:03 -08:00
parent eb8dbeb0fe
commit 21ea1481ea

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 {