Add in-app debug log panel
build-push / docker (push) Successful in 4m17s

This commit is contained in:
AI Assistant
2026-03-13 16:50:51 +09:00
parent 823bf12b6f
commit 8ed1e84772
4 changed files with 191 additions and 1 deletions
+32
View File
@@ -31,3 +31,35 @@ body {
cursor: ew-resize;
box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
#debugLogList::-webkit-scrollbar {
width: 10px;
}
#debugLogList::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.16);
border-radius: 9999px;
}
.debug-entry {
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
padding: 10px 8px;
}
.debug-entry:last-child {
border-bottom: none;
}
.debug-entry__meta {
display: flex;
justify-content: space-between;
gap: 12px;
color: rgba(255, 255, 255, 0.55);
margin-bottom: 6px;
}
.debug-entry__payload {
white-space: pre-wrap;
word-break: break-word;
color: rgba(255, 255, 255, 0.9);
}