fix: input placeholder css specificity increase

This commit is contained in:
fragosti
2018-12-05 11:39:10 -08:00
parent b2dd5495bc
commit 3454bbfd65

View File

@@ -29,8 +29,8 @@ export const Input =
outline: none;
border: none;
&::placeholder {
color: ${props => props.theme[props.fontColor || 'white']};
opacity: 0.5;
color: ${props => props.theme[props.fontColor || 'white']} !important;
opacity: 0.5 !important;
}
}
`;