19 lines
352 B
Svelte
19 lines
352 B
Svelte
|
|
<div class="transcript-editor">
|
||
|
|
<p>Transcript Editor</p>
|
||
|
|
<p class="placeholder">TipTap rich text editor will be integrated here</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.transcript-editor {
|
||
|
|
padding: 1rem;
|
||
|
|
background: #16213e;
|
||
|
|
border-radius: 8px;
|
||
|
|
color: #e0e0e0;
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
.placeholder {
|
||
|
|
color: #666;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
}
|
||
|
|
</style>
|