We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 732e9b5 commit 19cb4e2Copy full SHA for 19cb4e2
home.mdx
@@ -5,7 +5,9 @@ mode: 'custom'
5
import { IntroCard } from '/snippets/card.mdx';
6
7
export function openSearch() {
8
- document.getElementById('search-bar-entry').click();
+ if (typeof document !== 'undefined') {
9
+ document.getElementById('search-bar-entry').click();
10
+ }
11
}
12
13
<div className="relative w-full flex items-center justify-center" style={{ height: '28rem', overflow: 'hidden'}}>
style.css
@@ -5,7 +5,7 @@
.font-branded, h1, h2, h3 {
- font-family: "GraphikWide" !important;
+ font-family: "GraphikWide";
letter-spacing: -1%;
0 commit comments