Skip to content

Commit

Permalink
fix(site): minor layout adjustment to site
Browse files Browse the repository at this point in the history
  • Loading branch information
GarthDB committed Dec 6, 2023
1 parent 68e2f92 commit 973bf6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions docs/site/components/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ export default function Layout({ children, home }) {
/>
<meta
property="og:image"
content={`https://og-image.vercel.app/${encodeURI(
siteTitle,
)}.png?theme=light&md=0&fontSize=75px&images=https%3A%2F%2Fassets.vercel.com%2Fimage%2Fupload%2Ffront%2Fassets%2Fdesign%2Fnextjs-black-logo.svg`}
name="twitter:image"
content="https://spectrum.adobe.com/static/landscape-2.png"
/>
<meta name="og:title" content={siteTitle} />
<meta name="twitter:card" content="summary_large_image" />
Expand Down
2 changes: 1 addition & 1 deletion docs/site/pages/tokens/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function TokenValue({ token }) {
</>
);
case "color":
return <pre>{RGBAToHexA(token.value)}</pre>;
return <code>{RGBAToHexA(token.value)}</code>;
default:
return <pre>JSON.stringify(token)</pre>;
}
Expand Down

0 comments on commit 973bf6c

Please sign in to comment.