feat: 검증된 인게임 글자 크기를 네 단계로 통합
This commit is contained in:
@@ -23,12 +23,12 @@
|
||||
}
|
||||
|
||||
.game-shell__title {
|
||||
font-size: 1.6rem;
|
||||
font-size: var(--sammo-font-size-title);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.game-shell__subtitle {
|
||||
font-size: 0.85rem;
|
||||
font-size: var(--sammo-font-size-normal);
|
||||
color: var(--sammo-color-text-muted);
|
||||
}
|
||||
|
||||
@@ -44,11 +44,11 @@
|
||||
background: var(--sammo-color-action-bg);
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
font-size: 0.8rem;
|
||||
font-size: var(--sammo-font-size-small);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.game-feedback--error {
|
||||
color: var(--sammo-color-error);
|
||||
font-size: 0.85rem;
|
||||
font-size: var(--sammo-font-size-normal);
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@
|
||||
.legacy-sort-indicator {
|
||||
margin-left: 2px;
|
||||
color: #9ee7ba;
|
||||
font-size: 0.75em;
|
||||
font-size: var(--sammo-font-size-small);
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
background-image: var(--sammo-texture-walnut);
|
||||
color: var(--sammo-color-text);
|
||||
font-family: var(--sammo-font-sans);
|
||||
font-size: 14px;
|
||||
font-size: var(--sammo-font-size-normal);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
}
|
||||
|
||||
.ref-shell__title {
|
||||
font-size: 17px;
|
||||
font-size: var(--sammo-font-size-emphasis);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
:root {
|
||||
/* 검증된 화면이 공유하는 네 단계. 콘텐츠 내부 축소/숨김은 별도 계약이다. */
|
||||
--sammo-font-size-small: 12px;
|
||||
--sammo-font-size-normal: 14px;
|
||||
--sammo-font-size-emphasis: 16px;
|
||||
--sammo-font-size-title: 24px;
|
||||
--sammo-font-sans: Pretendard, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
|
||||
--sammo-color-text: #fff;
|
||||
--sammo-color-text-muted: rgba(232, 221, 196, 0.7);
|
||||
|
||||
Reference in New Issue
Block a user