Skip to content

Commit

Permalink
Merge pull request #138 from Gosrock/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
9yujin authored Feb 13, 2022
2 parents 25088a0 + 5b2a012 commit f959965
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
10 changes: 8 additions & 2 deletions src/stories/Components/TicketList/TicketList.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px;
padding: 15px 20px;
box-sizing: border-box;
}

@media screen and (max-with: 450px) {
.TicketList-item {
padding: 15px 6%;
}
}

@media screen and (max-width: 350px) {
.TicketList-icon {
display: none;
Expand Down Expand Up @@ -61,7 +67,7 @@
width: calc(50% - 0.5px);
display: flex;
align-items: center;
justify-content: right;
justify-content: flex-end;
z-index: 2;
height: 50px;
}
Expand Down
8 changes: 6 additions & 2 deletions src/stories/Components/TicketList/TicketList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,15 @@ export const TicketList = ({ onClickQR, ...props }) => {
}}
>
<Car />
<div style={{ fontWeight: '700', marginLeft: '13px' }}>오시는 길</div>
<div style={{ fontWeight: '700', marginLeft: '13px', Color: '#000' }}>
오시는 길
</div>
</div>
<div className={'TicketList-rec'}></div>
<div className="TicketList-button-right" onClick={onClickQR}>
<div style={{ fontWeight: '700', marginRight: '13px' }}>
<div
style={{ fontWeight: '700', marginRight: '13px', color: '#000' }}
>
QR코드 보기
</div>
<QR />
Expand Down

0 comments on commit f959965

Please sign in to comment.