diff options
-rw-r--r-- | src/App.css | 4 | ||||
-rw-r--r-- | src/BBSThread.js | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/App.css b/src/App.css index 3342107..199e7a1 100644 --- a/src/App.css +++ b/src/App.css @@ -11,4 +11,8 @@ .imageSegment { padding: 0 !important; +} + +.vipFont { + font-family: Mona, Monapo, IPAMonaPGothic, 'MS PGothic', YOzFontAA97; }
\ No newline at end of file diff --git a/src/BBSThread.js b/src/BBSThread.js index dd00a72..9b0bc1c 100644 --- a/src/BBSThread.js +++ b/src/BBSThread.js @@ -92,7 +92,8 @@ class BBSThread extends Component { </Segment> : null} <Segment padded> - <div className="postMessage" dangerouslySetInnerHTML={{ __html: post.message }} /> + + <div className={`postMessage ${this.props.dir === "zonavip" ? "vipFont" : null}`} dangerouslySetInnerHTML={{ __html: post.message }} /> {locked ? null : (<Label attached='bottom right'> <Icon name="reply" />Responder |