Skip to content

Commit

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

.prevBtn {
position: fixed;
bottom: -100px;
bottom: -76px;
left: 50%;
transform: translateX(-50%);
}
4 changes: 2 additions & 2 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: 350px;
display: flex;
flex-direction: column;
align-content: center;
Expand Down Expand Up @@ -109,7 +109,7 @@
width: 100%;
position: absolute;
left: 50%;
bottom: 6%;
bottom: 22%;
transform: translateX(-50%);
display: flex;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(pages)/4q-gallery/_components/second.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default function Third() {
</div>
) : (
<>
<div className={styles.subTitle}>QR의 위치를 선택해주세요.</div>
{/* <div className={styles.subTitle}>QR의 위치를 선택해주세요.</div> */}
<div className={styles.canvasContainer}>
<div className={styles.backgroundContainer}>
<Stage width={280} height={280} ref={stageRef}>
Expand Down

0 comments on commit 949767d

Please sign in to comment.