How to hide placeholders of text and number inputs (not select)
Add this CSS code
div:not(.v-select) input[type=number]:focus::placeholder,
div:not(.v-select) input[type=text]:focus::placeholder {
transition: opacity 0.2s ease;
}
div:not(.v-select) input[type=number]:focus::placeholder,
div:not(.v-select) input[type=text]:focus::placeholder {
opacity: 0 !important;
}
You can add this CSS code this way: https://tangiblewp.freshdesk.com/support/solutions/articles/101000373820-how-to-add-css-code-that-is-future-update-compatible