I am naive to SCSS. I'm planning to convert the 'data-placeholder' following code in html to bold in SCSS:
<optic-select-input id="placeholder"data-placeholder="Choose or type
subject..." title = "Type your subject">
Here is my effort in SCSS:
optic-select-input {
data-placeholder {
font-weight: bold;
}
}
However, this is not showing any impact. Any help would be highly appreciated.