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
Based on the docs this should set the font size on CSS/styles level: .css('fontSize', 20)
If the above code is used it will not set the desired CSS font size styling, but this code will work: .css('font-size', 20)
Problem is that when TS types are used, css method's first argument style is type of CSSStyleDeclaration where it only allows fontSize.