Skip to content

Commit 1b9f623

Browse files
committed
2 parents 67d0f71 + 75d127c commit 1b9f623

10 files changed

Lines changed: 459 additions & 56 deletions

File tree

apps/ticket/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"@tanstack/react-query-devtools": "^5.80.10",
1919
"axios": "^1.10.0",
2020
"classnames": "^2.5.1",
21+
"html5-qrcode": "^2.3.8",
2122
"import-in-the-middle": "^1.14.2",
2223
"next": "15.3.6",
2324
"qrcode.react": "^4.2.0",

apps/ticket/src/app/(pages)/event/[eventId]/_clientBoundray/ImageCarouselClient/index.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
align-items: center;
2727
justify-content: center;
2828
width: 506px;
29-
height: 552px;
29+
height: 552px; // 확인
3030

3131
@media (max-width: 767px) {
3232
position: relative;

apps/ticket/src/app/(pages)/event/[eventId]/time-table/_clientBoundary/TimeTableClient/index.module.scss

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,11 @@
88
}
99

1010
.back_button {
11-
// TODO: 1차 릴리즈 이후 다시 오픈
12-
display: none;
1311
width: 90px;
1412
height: 32px;
1513
}
1614

1715
.favorite_button {
18-
// TODO: 1차 릴리즈 이후 다시 오픈
19-
display: none;
20-
2116
border: none;
2217
border-radius: 34px;
2318

@@ -27,10 +22,7 @@
2722
}
2823

2924
.star_button {
30-
// TODO: 1차 릴리즈 이후 다시 오픈
31-
display: none;
32-
33-
// display: flex;
25+
display: flex;
3426
flex-shrink: 0;
3527
align-items: center;
3628
justify-content: center;

apps/ticket/src/app/(pages)/event/[eventId]/time-table/_components/TimeTableDetailModal/index.module.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@
158158
}
159159

160160
.star_button {
161-
// TODO: 1차 릴리즈 이후 다시 오픈
162-
display: none;
163-
164-
// display: flex;
161+
display: flex;
165162
flex-shrink: 0;
166163
align-items: center;
167164
justify-content: center;
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
@use "@permit/design-system/styles/variables" as theme;
2+
3+
.container {
4+
width: 100%;
5+
min-height: 100vh;
6+
margin-top: 120px;
7+
padding: 24px;
8+
9+
background-color: theme.$black;
10+
}
11+
12+
.header {
13+
margin-bottom: 32px;
14+
}
15+
16+
.camera_container {
17+
position: relative;
18+
width: 100%;
19+
max-width: 500px;
20+
margin: 0 auto;
21+
overflow: hidden;
22+
23+
background-color: theme.$gray-900;
24+
border-radius: 12px;
25+
}
26+
27+
.qr_reader {
28+
width: 100%;
29+
}
30+
31+
.toast {
32+
position: fixed;
33+
bottom: 32px;
34+
left: 50%;
35+
z-index: 9999;
36+
padding: 16px 24px;
37+
38+
color: theme.$white;
39+
font-weight: 500;
40+
font-size: 16px;
41+
42+
background-color: theme.$gray-800;
43+
box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
44+
transform: translateX(-50%);
45+
opacity: 1;
46+
border-radius: 8px;
47+
48+
transition: opacity 0.3s ease;
49+
50+
&.success {
51+
background-color: #0f0;
52+
}
53+
54+
&.error {
55+
background-color: theme.$red-100;
56+
}
57+
58+
&.toast_hide {
59+
opacity: 0;
60+
}
61+
}

0 commit comments

Comments
 (0)