Add padding to .placeholder-icon

Currently there is no gap between the `.placeholder-icon` and the placeholder text, sometimes its fixed by using an ` `, I think add padding is a better solution.
I hope I did the sass selector correctly, you may check it twice.
This commit is contained in:
Aicke Schulz
2014-02-25 10:54:10 +01:00
parent 3c9e6b7149
commit 2e7a97551e

View File

@@ -1,4 +1,3 @@
/**
* Forms
* --------------------------------------------------
@@ -121,6 +120,12 @@ textarea {
.placeholder-icon {
color: #aaa;
&:first-child {
padding-right: 6px;
}
&:last-child {
padding-left: 6px;
}
}
.item-stacked-label {