| 1 | <template> |
| 2 | <div class="demo-editor"> |
| 3 | <slot /> |
| 4 | </div> |
| 5 | </template> |
| 6 | |
| 7 | <style lang="postcss"> |
| 8 | .demo-editor { |
| 9 | font-size: 1em; |
| 10 | line-height: 1.2em; |
| 11 | min-height: 450px; |
| 12 | margin-top: 25px; |
| 13 | padding: 10px; |
| 14 | border-radius: 7px; |
| 15 | position: relative; |
| 16 | box-shadow: |
| 17 | 0 0 0 1px rgba(0, 0, 0, 0.05), |
| 18 | 0 0 30px 1px rgba(0, 0, 0, 0.15); |
| 19 | } |
| 20 | .dark .demo-editor { |
| 21 | @apply bg-[#161618] border border-gray-400 border-opacity-10; |
| 22 | } |
| 23 | .demo-editor::after { |
| 24 | content: ''; |
| 25 | position: absolute; |
| 26 | top: 12px; |
| 27 | left: 10px; |
| 28 | width: 12px; |
| 29 | height: 12px; |
| 30 | background: #f95c5b; |
| 31 | border-radius: 100%; |
| 32 | box-shadow: |
| 33 | 0 0 0 1px #da3d42, |
| 34 | 22px 0 0 0 #fabe3b, |
| 35 | 22px 0 0 1px #ecb03e, |
| 36 | 44px 0 0 0 #38cd46, |
| 37 | 44px 0 0 1px #2eae32; |
| 38 | } |
| 39 | </style> |
| 40 |