build error and mobile support

This commit is contained in:
Ivan Dimitrov 2023-11-12 14:24:30 +02:00
parent cda70cce35
commit c6522bb851
2 changed files with 4 additions and 8 deletions

View File

@ -75,7 +75,7 @@ export default function Content({ params }: Props) {
}, },
pre({ children, className }) { pre({ children, className }) {
return ( return (
<CodeBlock className={className} children={children} /> <CodeBlock className={className}>{children}</CodeBlock>
) )
} }
}} }}
@ -84,14 +84,14 @@ export default function Content({ params }: Props) {
</Markdown> </Markdown>
return ( return (
<div className="w-full h-full p-20 overflow-x-hidden overflow-scroll"> <div className="w-full h-full p-4 lg:p-20 overflow-x-hidden overflow-scroll">
<div className="flex flex-col gap-4 text-center border-amber-50 border-2 p-2 m-2 rounded-full"> <div className="flex flex-col gap-4 text-center border-amber-50 border-2 p-2 m-2 lg:rounded-full">
{title()} {title()}
{goal()} {goal()}
{role()} {role()}
{date()} {date()}
</div> </div>
<div className="w-3/4 m-auto"> <div className="w-full m-auto lg:w-3/4">
{ctnt()} {ctnt()}
</div> </div>
</div> </div>

View File

@ -10,10 +10,6 @@ main {
@apply flex flex-col w-full h-full @apply flex flex-col w-full h-full
} }
main * {
@apply border-amber-50
}
svg { svg {
@apply w-14 h-14 text-amber-100 hover:text-cyan-500 @apply w-14 h-14 text-amber-100 hover:text-cyan-500
} }