Skip to content

Commit

Permalink
クラス名を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
ninnikuusagi committed Apr 4, 2024
1 parent 472e06d commit 0ef0511
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/routes/components/post-form/post-form.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
outline: none;
}

.post-form-submission {
.post-form-control-area {
display: flex;
justify-content: space-between;
width: 100%;
Expand Down Expand Up @@ -73,7 +73,7 @@
font-size: 15px;
}

.post-form-submission {
.post-form-control-area {
position: fixed;
bottom: 4px;
left: 0;
Expand Down
2 changes: 1 addition & 1 deletion app/routes/components/post-form/post-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function PostForm({
<p>{snsUser.userName}</p>
</div>
<textarea className={styles["post-form-message"]} name="content" placeholder="今日はどんな冒険をしましたか?" />
<div className={styles["post-form-submission"]}>
<div className={styles["post-form-control-area"]}>
{children}
<button className={styles["post-form-button"]} type="submit">{submitMessage}</button>
</div>
Expand Down

0 comments on commit 0ef0511

Please sign in to comment.