- F7 (이미 main 병합): AI-primary due_date flow, 다중 후보 추출 - fix(quickcapture): textarea min-height: 0 + .card overflow: hidden 으로 hint 노출 보장 CHANGELOG.md / package.json 0.2.1 → 0.2.2. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" />
|
|
<title>Inkling Capture</title>
|
|
<style>
|
|
html, body, #root { margin: 0; height: 100%; background: transparent; font-family: system-ui, sans-serif; overflow: hidden; }
|
|
body { -webkit-app-region: drag; }
|
|
.card {
|
|
-webkit-app-region: no-drag;
|
|
background: #1e1e24; color: #eee;
|
|
border-radius: 12px; box-shadow: 0 12px 48px rgba(0,0,0,0.4);
|
|
height: calc(100% - 24px); margin: 12px;
|
|
display: flex; flex-direction: column; padding: 12px;
|
|
overflow: hidden; box-sizing: border-box;
|
|
}
|
|
textarea { flex: 1; min-height: 0; background: transparent; color: inherit; border: none; outline: none; font-size: 14px; resize: none; }
|
|
.thumbs { display: flex; gap: 6px; }
|
|
.thumbs img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; }
|
|
.hint { color: #888; font-size: 11px; margin-top: 6px; }
|
|
.err { color: #ff6a6a; font-size: 11px; margin-top: 6px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html>
|