Skip to content

Commit

Permalink
Merge branch 'font' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobinstein committed Jan 2, 2025
2 parents ebd5e75 + dd633e2 commit d5669ba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/Guides.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ export function Guides() {
<div className="not-prose mt-4 grid grid-cols-1 gap-8 border-t border-zinc-900/5 pt-10 sm:grid-cols-2 xl:grid-cols-4 dark:border-white/5">
{guides.map((guide) => (
<div key={guide.href}>
<h3 className="text-sm font-semibold text-zinc-900 dark:text-white">
<h3 className="text-lg font-semibold text-zinc-900 dark:text-white">
{guide.name}
</h3>
<p className="mt-1 text-sm text-zinc-600 dark:text-zinc-400">
<p className="mt-1 text-base text-zinc-600 dark:text-zinc-400">
{guide.description}
</p>
<p className="mt-4">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ function NavigationGroup({
<li className={clsx('relative mt-6', className)}>
<motion.h2
layout="position"
className="flex items-center justify-between text-xs font-semibold text-zinc-900 dark:text-white cursor-pointer"
className="flex items-center justify-between text-lg font-semibold text-zinc-900 dark:text-white cursor-pointer"
onClick={() => toggleCollapse(group.title)}
>
{group.title}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,13 @@ function Resource({ resource }: { resource: Resource }) {
<div className="absolute inset-0 rounded-2xl ring-1 ring-inset ring-zinc-900/7.5 group-hover:ring-zinc-900/10 dark:ring-white/10 dark:group-hover:ring-white/20" />
<div className="relative rounded-2xl px-4 pb-4 pt-16">
<ResourceIcon icon={resource.icon} />
<h3 className="mt-4 text-sm font-semibold leading-7 text-zinc-900 dark:text-white">
<h3 className="mt-4 text-lg font-semibold leading-7 text-zinc-900 dark:text-white">
<Link href={resource.href}>
<span className="absolute inset-0 rounded-2xl" />
{resource.name}
</Link>
</h3>
<p className="mt-1 text-sm text-zinc-600 dark:text-zinc-400">
<p className="mt-1 text-base text-zinc-600 dark:text-zinc-400">
{resource.description}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion typography.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function typographyStyles({ theme }: PluginUtils) {

// Base
color: 'var(--tw-prose-body)',
fontSize: theme('fontSize.sm')[0],
fontSize: theme('fontSize.base')[0],
lineHeight: theme('lineHeight.7'),

// Text
Expand Down

0 comments on commit d5669ba

Please sign in to comment.