Tweet not found
The embedded tweet could not be found…
サイト上部にサイトヘッダーやナビゲーションバーなどの要素を position: sticky;
や position: fixed;
で固定した場合、https://example.com/post#heading
のようなアンカーリンクでの移動のズレを無くすための設定について。
:root {
scroll-padding-top: 64px;
}
上記のように全体に scroll-padding-top
を指定するよりも、以下のようにアンカーの部分に scroll-margin-top
を指定した方が良さそう。
.heading {
scroll-margin-top: 64px;
}
<h2 id="heading" class="heading">見出し</h2>
scroll-padding-top
を使った場合に、shadcn/uiのDropdown Menuの挙動がおかしくなった。Dropdown Menuを閉じたときに変なスクロールが発生した。
今のところはサーバーコンポーネントで取得するにはmiddlewareを使うしかないらしい。クライアントコンポーネントにして usePathname
を使うことにした。
getPathname
が早く使えるようになったらいいのに。
The embedded tweet could not be found…
つけない派なのだが、つけた方がいいのか悩んでいる。