I have been struggling with a simple issue for quite some time now, and I seem to be out of ideas.
The problem lies in the styling of a CSS pseudo-element before, which is defined as follows:
#fPhone::before{
color: #78be20;
content: "\e622";
font-family: icons;
}
However, when viewed on the browser, it only displays 622 instead of the desired icon. Upon inspecting the pseudo tag, I noticed that the content value is "e622". Even though adding "\" manually in the debugger resolves this, it doesn't seem to be recognized by the CSS.
I am running low on explanations as to why this discrepancy is occurring.