fixed navbar resize + quote size
This commit is contained in:
parent
daa874513e
commit
d7c5c1eb61
|
@ -35,7 +35,7 @@ const Navbar = () => {
|
|||
{links.map(({ id, text, link }) => (
|
||||
<li
|
||||
key={id}
|
||||
className="nav-links px-4 cursor-pointer capitalize font-medium text-lg text-gray-500 hover:scale-105 hover:text-black dark:hover:text-white duration-200 link-underline"
|
||||
className="nav-links px-4 cursor-pointer capitalize font-medium text-lg max-sm:text-base text-gray-500 hover:scale-105 hover:text-black dark:hover:text-white duration-200 link-underline"
|
||||
>
|
||||
<Link href={link}>{text}</Link>
|
||||
</li>
|
||||
|
|
|
@ -30,7 +30,7 @@ export default function Home() {
|
|||
</div>
|
||||
|
||||
<div className='col-span-3 flex flex-col place-items-center max-sm:place-items-start'>
|
||||
<code className='text-lg font-bold'>"I don't want to make a PDF, I'll code one instead." - Win at 3 A.M.</code>
|
||||
<code className='text-lg max-sm:text-base font-bold'>"I don't want to make a PDF, I'll code one instead."</code>
|
||||
</div>
|
||||
|
||||
<div className="col-span-3 mt-[-15px]">
|
||||
|
|
Loading…
Reference in New Issue