Skip to content

Commit f905ff7

Browse files
committed
Fix: meeting design fixed
1 parent 3486d57 commit f905ff7

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

src/views/meeting/components/MindMapComponent.tsx

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,13 @@ const MindMapComponent = () => {
4444
13:28
4545
</div>
4646
<div>
47-
<button onClick={toggleListening}>{isRecording ? "정지" : "시작"}</button>
4847
{isRecording && !isPaused && (
49-
<button onClick={pauseRecording}>⏸️ 일시정지</button>
48+
<button onClick={pauseRecording}>⏸️</button>
5049
)}
5150
{isRecording && isPaused && (
5251
<button onClick={resumeRecording}>▶️ 재개</button>
5352
)}
54-
55-
<p>인식된 텍스트: {transcript}</p>
56-
57-
{audioUrl && (
58-
<>
59-
<p>✅ 녹음 완료됨</p>
60-
<audio src={audioUrl} controls />
61-
</>
62-
)}
53+
<button onClick={toggleListening}>{isRecording ? "정지" : "시작"}</button>
6354
</div>
6455
</div>
6556
</div>

src/views/meeting/style/mind-map.sass

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,23 @@
1717
bottom: 117px
1818
border-radius: 16px
1919
background-color: $gray-50
20-
left: 50%;
20+
left: 50%
2121
transform: translate(-50%, -50%)
2222

2323
.record-length-wrap
24-
+flex-box(center, center, 4.86px)
24+
+flex-box(center, center, 10px)
2525

26-
.box
27-
+size(5.5px, 13px)
28-
background-color: $gray-300
26+
.box-wrap
27+
+flex-box(center, center, 4.86px)
28+
29+
.box
30+
+size(5.5px, 13px)
31+
background-color: $gray-300
32+
33+
.red
34+
background-color: #F05B56
35+
36+
.box-time
37+
color: #505457
38+
font-weight: 500
39+
line-height: 21px

0 commit comments

Comments
 (0)