[Fonts] LG Smart 폰트가 bold 되었을 때 제플린과 다름

Detail Notes :

1. 기존 폰트 제거 후 폰트 사용방법 재정의
> @baseFontBold
  - 사용금지 및 font-wieght:bold;로 대체
  - 일괄 적용 후 @baseFontBold 제거 예정
This commit is contained in:
jangheon Pyo
2024-03-15 10:55:06 +09:00
parent be801ea4f2
commit 5c3dd6b9d1
8 changed files with 23 additions and 6 deletions

View File

@@ -1,12 +1,29 @@
/* global */
/* font */
@font-face {
font-family: "LGSmartUI"; //font-weight: 400;
src: url("../../assets/fonts/lgfont/LGSmartUI-Regular2.woff") format("woff");
font-family: "LG Smart";
font-weight: 300;
src: local("LG_Smart_UI-Light"),
url("../../assets/fonts/lgfont/LG_Smart_UI-Light.woff") format("woff");
}
@font-face {
font-family: "LGSmartUIBold"; //font-weight: 600;
src: url("../../assets/fonts/lgfont/LGSmartUI-Bold2.woff") format("woff");
font-family: "LG Smart";
font-weight: 400;
src: local("LG_Smart_UI-Regular"),
url("../../assets/fonts/lgfont/LG_Smart_UI-Regular.woff") format("woff");
}
@font-face {
font-family: "LG Smart";
font-weight: 600;
src: local("LG_Smart_UI-SemiBold"),
url("../../assets/fonts/lgfont/LG_Smart_UI-SemiBold.woff") format("woff");
}
@font-face {
font-family: "LG Smart";
font-weight: 700;
src: local("LG_Smart_UI-Bold"),
url("../../assets/fonts/lgfont/LG_Smart_UI-Bold.woff") format("woff");
}
@font-face {
font-family: "Arial";
@@ -32,8 +49,8 @@
font-family: "TahomaBold";
src: url("../../assets/fonts/tahoma/tahomabd.ttf") format("ttf");
}
@baseFont: "LGSmartUI";
@baseFontBold: "LGSmartUIBold";
@baseFont: "LG Smart";
@baseFontBold: "LG Smart";
@arialFont: "Arial";
@arialFontBold: "ArialBold";
@robotoFont: "Roboto";