Skip to content

Commit

Permalink
fix: 🐛 (<PrefectureCheckbox>) 実体の<input>が表示される場所と同じ場所に配置されるように修正し…
Browse files Browse the repository at this point in the history
…た。 (#20)

- `position: absolute`で配置される`<input>`が、ラベル要素でなく`position: relative`を持つ直近の祖先に配置されてしまい、ラベルを押すと想定されていない場所にスクロールされてしまっていたため。
  • Loading branch information
ReoHakase committed May 25, 2024
1 parent ef7b1b1 commit 965cfdf
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export const PrefectureCheckbox = ({
htmlFor={checkboxId}
className={cx(
css({
pos: 'relative',
display: 'flex',
flexDir: 'row',
justifyContent: 'start',
Expand Down

0 comments on commit 965cfdf

Please sign in to comment.