File size: 476 Bytes
24d2987
 
0a93b74
24d2987
0a93b74
 
24d2987
 
 
 
0a93b74
 
24d2987
 
0a93b74
 
24d2987
 
 
0a93b74
 
24d2987
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

#editor-canvas {
    min-height: 400px;
    border: 2px dashed #d1d5db;
    transition: all 0.3s ease;
}

#editor-canvas:hover {
    border-color: #84cc16;
}

.prompt-textarea {
    resize: none;
    transition: all 0.2s ease;
}

.prompt-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.5);
}