Skip to content

fix: cert instructions #317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
212 changes: 212 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
"typescript": "~5.7.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-plugin-markdown": "^2.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"vitest-fail-on-console": "^0.7.1"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ function Code({
const markdownStyles = tv({
base: [
'prose',
'prose-sm prose-code:text-sm',
'prose-h1:mb-2 prose-h1:text-lg prose-h1:font-semibold',
'prose-h2:mb-2 prose-h2:text-lg prose-h2:font-semibold',
'prose-h3:mb-2 prose-h3:text-lg prose-h3:font-semibold',
'prose-h4:mb-2 prose-h4:text-lg prose-h4:font-semibold',
'prose-h5:mb-2 prose-h5:text-lg prose-h5:font-semibold',
'prose-h6:mb-2 prose-h6:text-lg prose-h6:font-semibold',
'prose-p:text-base',
'prose max-w-none prose-p:leading-relaxed',
'[--tw-prose-pre-code:theme(textColor.secondary)]',
'[--tw-prose-pre-bg:theme(colors.gray.200)]',
Expand Down
2 changes: 1 addition & 1 deletion src/components/heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function PageHeading({
return (
<UIKitHeading
level={level}
className="mb-4 flex items-center justify-between text-2xl font-bold"
className="mb-4 flex items-center justify-between text-2xl font-bold text-primary"
>
{title}
{children}
Expand Down
13 changes: 11 additions & 2 deletions src/components/page-container.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import { ReactNode } from 'react'
import { twMerge } from 'tailwind-merge'

export function PageContainer({ children }: { children: ReactNode }) {
export function PageContainer({
children,
className,
}: {
children: ReactNode
className?: string
}) {
return (
<section className="mx-auto max-w-[1440px] flex-col p-6">
<section
className={twMerge('mx-auto max-w-[1440px] flex-col p-6', className)}
>
{children}
</section>
)
Expand Down
Loading
Loading