Ito
📂

Select a file to edit

⌘S Save ⌘P Preview ⌘` Terminal

Terminal
.template-view { height: 100%; display: flex; flex-direction: column; min-height: 0; } .template-header { padding: 12px 20px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; } .template-title { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .template-grid { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 20px; overflow: hidden; } .template-panel { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; min-height: 0; } .template-panel h3 { padding: 10px 12px; font-size: 12px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); } .template-panel textarea { flex: 1; min-height: 0; width: 100%; padding: 12px; background: transparent; color: var(--text); border: none; outline: none; resize: none; font-family: 'MesloLGS NF', 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.6; } .template-panel pre { flex: 1; min-height: 0; margin: 0; padding: 12px; overflow: auto; white-space: pre; font-family: 'MesloLGS NF', 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.6; color: var(--text); } .template-output-md { flex: 1; min-height: 0; margin: 0; padding: 12px; overflow: auto; display: none; } .template-output-md.visible { display: block; } .template-output-md h1, .template-output-md h2, .template-output-md h3, .template-output-md h4 { margin: 1em 0 0.5em; } .template-output-md code { background: var(--surface); padding: 2px 6px; border-radius: var(--radius-sm); } .template-output-md pre { white-space: pre; } .template-output-md pre code { background: none; padding: 0; } @media (max-width: 1000px) { .template-grid { grid-template-columns: 1fr; } }