feat(frontend): 新しいフォントサイズを追加

This commit is contained in:
NoriDev 2023-05-27 00:33:07 +09:00
parent 977d7a2fab
commit 841a95f8f6
3 changed files with 16 additions and 0 deletions

View file

@ -31,6 +31,7 @@
- 계정 초기 설정 마법사를 완료하면 페이지를 새로 고치도록 (일부 옵션이 페이지를 새로 고쳐야만 반영되므로)
- 계정 생성 팝업에 뒤로 가기 버튼 추가
- 리액션 버튼 디자인 개선
- 새 글꼴 크기 추가
- Fix: 위젯 편집 시 헤더 이외의 영역을 눌렀을 때 위젯 설정이 뜨는 문제
- Fix: 위젯 편집 종료 버튼이 여러 개 있는 문제
- Fix: 일부 옵션 변경 시 페이지를 새로 고치도록

View file

@ -128,6 +128,9 @@
<option value="3"><span style="font-size: 15px;">Aa</span></option>
<option value="4"><span style="font-size: 16px;">Aa</span></option>
<option value="5"><span style="font-size: 17px;">Aa</span></option>
<option value="6"><span style="font-size: 18px;">Aa</span></option>
<option value="7"><span style="font-size: 19px;">Aa</span></option>
<option value="8"><span style="font-size: 20px;">Aa</span></option>
</MkRadios>
</div>
</FormSection>

View file

@ -130,6 +130,18 @@ html {
font-size: 17px;
}
&.f-6 {
font-size: 18px;
}
&.f-7 {
font-size: 19px;
}
&.f-8 {
font-size: 20px;
}
&.useSystemFont {
font-family: 'Hiragino Maru Gothic Pro', sans-serif;
}