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: How to add CSS code that is future update compatible