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

@ -510,6 +510,9 @@
.read_body .xe_content {
color: #333;
}
.read_body .xe_content table {
font: inherit;
}
.read_footer {
overflow: hidden;
}
@ -1157,4 +1160,4 @@
border-radius: 23px;
color:#fff;
text-decoration: inherit;
}
}