We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900f011 commit f8902d8Copy full SHA for f8902d8
web/components/Header.tsx
@@ -33,7 +33,8 @@ export default function Header(props: Props) {
33
</button>
34
<div className="dropdown-content z-[1] w-56 rounded-box bg-base-100 p-2 shadow">
35
<p className="p-2 text-xs">CourseMate は現在ベータ版です。</p>
36
- <ul className="menu p-0">
+ {/* biome-ignore lint/a11y/noNoninteractiveTabindex: daisyUI の仕様。tabIndex を消すとモバイルで開かないなどの問題が起こる */}
37
+ <ul tabIndex={0} className="menu p-0">
38
<li>
39
<a
40
href="https://forms.gle/WvFTbsJoHjGp9Qt88"
0 commit comments