Arial 폰트 추가, 패널 기본 폰트 및 컬러 지정, util mixin 변경
This commit is contained in:
BIN
com.twin.app.shoptime/assets/fonts/arial/Arial-Bold.woff
Normal file
BIN
com.twin.app.shoptime/assets/fonts/arial/Arial-Bold.woff
Normal file
Binary file not shown.
BIN
com.twin.app.shoptime/assets/fonts/arial/Arial.woff
Normal file
BIN
com.twin.app.shoptime/assets/fonts/arial/Arial.woff
Normal file
Binary file not shown.
@@ -7,6 +7,8 @@
|
|||||||
color: black;
|
color: black;
|
||||||
|
|
||||||
section {
|
section {
|
||||||
|
font-family: @baseFont;
|
||||||
|
color: @COLOR_GRAY03;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
word-break: keep-all;
|
word-break: keep-all;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,14 @@
|
|||||||
font-family: "LGSmartUIBold"; //font-weight: 600;
|
font-family: "LGSmartUIBold"; //font-weight: 600;
|
||||||
src: url("../../assets/fonts/lgfont/LGSmartUI-Bold2.woff") format("woff");
|
src: url("../../assets/fonts/lgfont/LGSmartUI-Bold2.woff") format("woff");
|
||||||
}
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Arial";
|
||||||
|
src: url("../../assets/fonts/arial/Arial.woff") format("woff");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "ArialBold";
|
||||||
|
src: url("../../assets/fonts/arial/Arial-Bold.woff") format("woff");
|
||||||
|
}
|
||||||
@baseFont: "LGSmartUI";
|
@baseFont: "LGSmartUI";
|
||||||
@baseFontBold: "LGSmartUIBold";
|
@baseFontBold: "LGSmartUIBold";
|
||||||
|
|
||||||
|
|||||||
@@ -5,11 +5,13 @@
|
|||||||
align-items: @alignCenter;
|
align-items: @alignCenter;
|
||||||
flex-direction: @direction;
|
flex-direction: @direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
.size(@w: 50px, @h: 50px) {
|
.size(@w: 50px, @h: 50px) {
|
||||||
width: @w;
|
width: @w;
|
||||||
height: @h;
|
height: @h;
|
||||||
}
|
}
|
||||||
.position(@position: relative, @top: 0, @right: 0, @bottom: 0, @left: 0) {
|
|
||||||
|
.position(@position: relative, @top: auto, @right: auto, @bottom: auto, @left: auto) {
|
||||||
position: @position;
|
position: @position;
|
||||||
top: @top;
|
top: @top;
|
||||||
right: @right;
|
right: @right;
|
||||||
@@ -24,11 +26,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
//font
|
//font
|
||||||
.font (@fontFamily, @fontSize, @color, @fontWeight) {
|
.font (@fontFamily, @fontSize) {
|
||||||
font-family: @fontFamily;
|
font-family: @fontFamily;
|
||||||
font-size: @fontSize;
|
font-size: @fontSize;
|
||||||
color: @color;
|
|
||||||
font-weight: @fontWeight;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//말줄임
|
//말줄임
|
||||||
|
|||||||
Reference in New Issue
Block a user