This commit is contained in:
chronark 2023-05-19 20:58:19 +02:00
commit 10237b1a63
No known key found for this signature in database
3 changed files with 13 additions and 6 deletions

View File

@ -67,7 +67,7 @@ export const Header: React.FC<Props> = ({ project, views }) => {
views, views,
)} )}
</span> </span>
<Link target="_blank" href="https://twitter/chronark_"> <Link target="_blank" href="https://twitter.com/chronark_">
<Twitter <Twitter
className={`w-6 h-6 duration-200 hover:font-medium ${ className={`w-6 h-6 duration-200 hover:font-medium ${
isIntersecting isIntersecting

View File

@ -87,12 +87,9 @@ export default async function ProjectsPage() {
{featured.description} {featured.description}
</p> </p>
<div className="absolute bottom-4 md:bottom-8"> <div className="absolute bottom-4 md:bottom-8">
<Link <p className="hidden text-zinc-200 hover:text-zinc-50 lg:block">
className="hidden text-zinc-200 hover:text-zinc-50 lg:block"
href={`/projects/${featured.slug}`}
>
Read more <span aria-hidden="true">&rarr;</span> Read more <span aria-hidden="true">&rarr;</span>
</Link> </p>
</div> </div>
</article> </article>
</Link> </Link>

View File

@ -11,6 +11,16 @@ module.exports = {
theme: { theme: {
extend: { extend: {
typography: { typography: {
DEFAULT: {
css: {
"code::before": {
content: '""',
},
"code::after": {
content: '""',
},
},
},
quoteless: { quoteless: {
css: { css: {
"blockquote p:first-of-type::before": { content: "none" }, "blockquote p:first-of-type::before": { content: "none" },