Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ticketping/src/component/QueueInfoModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const QueueInfoModal = ({ visible, onClose, performance }) => {
<p>현재 접속량이 많아 대기 중입니다.</p>
<p>잠시만 기다려 주시면 예매 페이지로 연결됩니다.</p>
</div>
<Button key="back" onClick={onClose}>
<Button className="queue-modal-btn" key="back" onClick={onClose}>
닫기
</Button>
</Modal>
Expand Down
9 changes: 9 additions & 0 deletions ticketping/src/style/QueueInfoModal.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,13 @@
margin-bottom: -5px;
width: auto;
}

.queue-modal-btn {
margin-top: 25px;
margin-bottom: -5px;
width: auto;
display: block; /* 버튼을 블록 요소로 변경 */
margin-left: auto; /* 왼쪽 여백 자동 */
margin-right: auto; /* 오른쪽 여백 자동 */
}

Loading