* Return the CSS sizing classes required to switch to the base size. Like * `this.havingSize(BASESIZE).sizingClasses(this)`.
()
| 5042 | |
| 5043 | |
| 5044 | baseSizingClasses() { |
| 5045 | if (this.size !== Options.BASESIZE) { |
| 5046 | return ["sizing", "reset-size" + this.size, "size" + Options.BASESIZE]; |
| 5047 | } else { |
| 5048 | return []; |
| 5049 | } |
| 5050 | } |
| 5051 | /** |
| 5052 | * Return the font metrics for this size. |
| 5053 | */ |
no outgoing calls
no test coverage detected