diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 22:53:42 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 22:53:42 -0500 |
commit | 7bc99f8a3ce1eed99b9ee6bbb3efcaefa156f4fb (patch) | |
tree | bf2a6f2b25af8f206f743a3d8a59dadad99a844c /src/web | |
parent | persistent sessions (diff) | |
download | xssbook2-7bc99f8a3ce1eed99b9ee6bbb3efcaefa156f4fb.tar.gz xssbook2-7bc99f8a3ce1eed99b9ee6bbb3efcaefa156f4fb.tar.bz2 xssbook2-7bc99f8a3ce1eed99b9ee6bbb3efcaefa156f4fb.zip |
remove 'rem', make styles more scalable
Diffstat (limited to '')
-rw-r--r-- | src/web/_views/_template/comment.php | 4 | ||||
-rw-r--r-- | src/web/_views/_template/post.php | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/web/_views/_template/comment.php b/src/web/_views/_template/comment.php index b947ff6..f8a0ff5 100644 --- a/src/web/_views/_template/comment.php +++ b/src/web/_views/_template/comment.php @@ -7,6 +7,8 @@ <strong><?=$this->format_name($user)?></strong> <span class="subtext ml"><?=$this->format_date($comment['created'])?></span> </div> - <?=$comment['content']?> + <p class="content"> + <?=$comment['content']?> + </p> </div> </div> diff --git a/src/web/_views/_template/post.php b/src/web/_views/_template/post.php index f7f5de2..53596d7 100644 --- a/src/web/_views/_template/post.php +++ b/src/web/_views/_template/post.php @@ -8,7 +8,7 @@ <span class="subtext"><?=$this->format_date($post['created'])?></span> </div> </div> - <p> + <p class="content"> <?=$post['content']?> </p> <?php |