Skip to content

Commit

Permalink
fix: fix hidden button of create submit
Browse files Browse the repository at this point in the history
  • Loading branch information
moolmin committed Oct 11, 2024
1 parent 589b7d3 commit 3f244b1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
height: 85vh;
height: 90vh;
width: 100%;
margin-top: 5px;
position: relative;
Expand Down Expand Up @@ -33,12 +33,12 @@
position: fixed;
left: 50%;
transform: translateX(-50%);
bottom: 70px;
bottom: -50%;
}

.prevBtn {
position: fixed;
bottom: -76px;
bottom: -40%;
left: 50%;
transform: translateX(-50%);
}
2 changes: 1 addition & 1 deletion src/app/(pages)/4q-gallery/_components/detail.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.container {
max-width: 500px;
width: 100%;
height: 650px;
height: 800px;
align-items: center;
justify-content: center;
text-align: center;
Expand Down
9 changes: 5 additions & 4 deletions src/app/(pages)/4q-gallery/_components/second.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.container {
text-align: center;
max-width: 600px;
height: 370px;
height: 390px;
display: flex;
flex-direction: column;
align-content: center;
Expand Down Expand Up @@ -107,19 +107,20 @@
justify-content: space-around;
padding: 20px;
z-index: 2;
height: 80px;
}

.submitBtnContainer {
height: 50px;
height: 40px;
width: 100%;
position: absolute;
left: 50%;
bottom: 24%;
bottom: 21%;
transform: translateX(-50%);
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
/* margin-top: 20px; */
z-index: 10;
}

Expand Down
1 change: 1 addition & 0 deletions src/app/(pages)/4q-gallery/_components/second.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ export default function Third() {
value={selectedColor}
onChange={(color) => handleColorChange(color.toHexString())}
size="small"
style={{height: '24px'}}
/>
</Tooltip>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/app/not-found.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
flex-direction: column;
align-items: center;
padding: 50px;
overflow: hidden;
}
2 changes: 1 addition & 1 deletion src/app/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import notFound from '../../public/images/not_found.png'
export default function NotFound(){
return (
<div className={styles.container}>
<Image src={notFound} alt='not found img' width={400} height={270}/>
<Image src={notFound} alt='not found img' width={380} height={245}/>
<h2>요청하신 페이지를 찾을 수 없습니다.</h2>
</div>
);
Expand Down

0 comments on commit 3f244b1

Please sign in to comment.