chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
/**
* EmbeddedWebview 组件样式
* 支持亮色/暗色主题
*/
.container {
display: flex;
flex-direction: column;
flex: 1;
height: 100%;
min-height: 0;
}
.toolbar {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
background: var(--color-bg-section-header);
border-bottom: 1px solid var(--color-border);
flex-shrink: 0;
}
.url {
flex: 1;
font-size: 12px;
color: var(--color-text-tertiary);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}