You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First: Thanks a lot for this great library!
Problem: In the #console {...} I have tried both of these:
font: 18px dejavu sans mono, menlo, monaco, monospace;
font-family: Menlo;
I get the right size, but not the font I want. Seems I just get my browser's default monospace.
I have tried Safari, Chrome, Firefox and Opera, on Mac.
The text was updated successfully, but these errors were encountered:
The solution seems to be to target these font specs at the children of #console, like this:
#console * {
font: 18px 'dejavu sans mono', menlo, monaco, monospace;
line-height: 135%;
}
Now I get the intended font-family. Sorry for the noise.
No worries, I think it's a legit concern, you shouldn't have to do a * selector to change font-famliy so I'm going to reopen to take a look at it later.
First: Thanks a lot for this great library!
Problem: In the #console {...} I have tried both of these:
font: 18px dejavu sans mono, menlo, monaco, monospace;
font-family: Menlo;
I get the right size, but not the font I want. Seems I just get my browser's default monospace.
I have tried Safari, Chrome, Firefox and Opera, on Mac.
The text was updated successfully, but these errors were encountered: