Added light font weight

This commit is contained in:
M66B 2020-04-26 16:02:21 +02:00
parent 06cdd66ae2
commit 4f2a1f7d19
1 changed files with 1 additions and 1 deletions

View File

@ -1061,6 +1061,7 @@ public class HtmlHelper {
value = value.toLowerCase(Locale.ROOT).trim(); value = value.toLowerCase(Locale.ROOT).trim();
switch (value) { switch (value) {
case "light":
case "lighter": case "lighter":
return 300; return 300;
case "normal": case "normal":
@ -1078,7 +1079,6 @@ public class HtmlHelper {
} }
return null; return null;
} }
private static Float getFontSize(String value, Integer current) { private static Float getFontSize(String value, Integer current) {