Skip to content

Commit

Permalink
(feat): add table header, fetch font from set address
Browse files Browse the repository at this point in the history
  • Loading branch information
Jipperism committed Jun 22, 2024
1 parent b6644f7 commit bef310b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions components/hyperboard-renderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export const HyperboardRenderer = ({
{showTable && (
<OwnershipTable
hyperboardId={hyperboardId}
showHeader
selectedRegistry={selectedRegistry}
onSelectRegistry={setSelectedRegistry}
/>
Expand Down
4 changes: 2 additions & 2 deletions fonts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ const Fonts = () => (
font-style: normal;
font-weight: 100 900;
font-display: optional;
src: url(/fonts/Director-Regular.woff2) format("woff2");
src: url(https://hyperboards-git-feature-hyperboard-widget-hypercerts-foundation.vercel.app/fonts/Director-Regular.woff2) format("woff2");
}
@font-face {
font-family: "Director-Variable";
font-style: normal;
font-weight: 100 900;
font-display: optional;
src: url(/fonts/Director-Variable.woff2) format("woff2");
src: url(https://hyperboards-git-feature-hyperboard-widget-hypercerts-foundation.vercel.app/fonts/Director-Variable.woff2) format("woff2");
}
`}
/>
Expand Down

0 comments on commit bef310b

Please sign in to comment.