Fixed icon field icon color

pull/5507/head
Cagatay Civici 2024-03-25 21:57:56 +03:00
parent 043e94f9c5
commit 8b328466fe
2 changed files with 16 additions and 2 deletions

View File

@ -4,10 +4,11 @@ export default {
position: relative;
}
.p-icon-field .p-input-icon {
.p-input-icon {
position: absolute;
top: 50%;
margin-top: -.5rem;
color: ${dt('iconfield.color')};
}
.p-icon-field-left .p-input-icon {

View File

@ -1 +1,14 @@
export default {};
export default {
colorScheme: {
light: {
root: {
color: '{surface.400}'
}
},
dark: {
root: {
color: '{surface.400}'
}
}
}
};