Skip to content

Commit db90c77

Browse files
committed
[feat] QRコードを飾り付ける
TODO: 動画の差し替え
1 parent e3a5af4 commit db90c77

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

src/pages/vote/index.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,16 @@ export default function Home(): JSX.Element {
2626
から五月祭グランプリへの投票をお願いしております。1分ほどで完了しますので、次の動画を参考に投票をお願いします!
2727
</p>
2828
<div className={styles.container}>
29-
<img src="/img/kf76-vote.png" width={"500px"} height={"500px"}></img>
29+
<div className={styles.QRCodeContainer}>
30+
<strong>↓↓↓↓↓↓↓↓↓↓</strong>
31+
<img
32+
src="/img/kf76-vote.png"
33+
width={"500px"}
34+
height={"500px"}
35+
className={styles.QRCodeImage}
36+
></img>
37+
<strong>↑↑↑↑↑↑↑↑↑↑</strong>
38+
</div>
3039
<video
3140
src={howToVoteVideo}
3241
controls

src/pages/vote/styles.module.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,14 @@
77
.howToVoteVideo {
88
max-height: 700px;
99
}
10+
11+
.QRCodeContainer {
12+
display: flex;
13+
flex-direction: column;
14+
align-items: center;
15+
font-size: 3rem;
16+
}
17+
18+
.QRCodeImage {
19+
border: solid black 5px;
20+
}

0 commit comments

Comments
 (0)