Fix non-adjustable font in tables

공통 css와 기본 스킨 css에서 <table>의 폰트와 글자 크기 등이 고정되어 있어
사용자가 선택한 폰트와 크기 등이 적용되지 않는 문제 수정

https://xetown.com/questions/1665747
This commit is contained in:
Kijin Sung 2022-12-15 23:20:05 +09:00
parent 2b83fe75f7
commit 988d50ad0e
2 changed files with 7 additions and 1 deletions

View file

@ -42,6 +42,9 @@ a img {
max-width: 100%;
height: auto;
}
table {
font: inherit;
}
blockquote {
padding: 2px 0;
border-style: solid;