Skip to content

Commit

Permalink
目標作成ボタンの配置divをクリックが透過できるように変更
Browse files Browse the repository at this point in the history
  • Loading branch information
MurakawaTakuya committed Dec 27, 2024
1 parent 11a7c2f commit 842e50b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Components/GoalModal/GoalModalButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ export default function GoalModalButton() {
width: "100%",
maxWidth: "600px",
zIndex: 1000,
pointerEvents: "none",
}}
>
<Fab
color="primary"
aria-label="add"
sx={{ marginRight: "10px !important" }}
sx={{ marginRight: "13px !important", pointerEvents: "auto" }}
// ゲストかメール認証が未完了のユーザーは使用不可
onClick={() => setOpen(true)}
disabled={
Expand Down
2 changes: 1 addition & 1 deletion src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ body {

main {
background: white;
padding-bottom: 130px;
padding-bottom: 100px;
}

0 comments on commit 842e50b

Please sign in to comment.