Compare commits

..

No commits in common. "7c0fdd142ff061d5171606482dc72a2c383bf900" and "67b915d722bbe07cc11bd46249ff06df022c0a00" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View file

@ -28,7 +28,7 @@ export function PostSegment(props: { post: Post }): JSXElement {
return (
<div class="card compact w-full flex-grow border-b-2 border-b-base-300 bg-base-200 text-base-content transition-all hover:bg-base-300">
<div class="card-body">
<p class="break-words text-base-content md:px-6 md:pt-2">{props.post?.content}</p>
<p class="break-words text-base-content">{props.post?.content}</p>
<div class="card-actions justify-end">
<button
onClick={(): void => nav("/post/" + props.post?.id)}

View file

@ -46,7 +46,8 @@ export function Footer(): JSXElement {
</nav>
<aside>
<p>
<b>{new Date().getFullYear()} FrostByte</b>
Copyright © {new Date().getFullYear()} - All right reserved by Swarm
Industries Ltd
</p>
</aside>
</footer>