Files
ai-media-hub/frontend/style.css
T
AI Assistant 8ed1e84772
build-push / docker (push) Successful in 4m17s
Add in-app debug log panel
2026-03-13 16:50:51 +09:00

66 lines
1.2 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");
:root {
color-scheme: dark;
}
body {
font-family: "Space Grotesk", sans-serif;
background-image:
radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 30%),
radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
}
.line-clamp-2,
.line-clamp-3 {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}
.line-clamp-2 {
-webkit-line-clamp: 2;
}
.line-clamp-3 {
-webkit-line-clamp: 3;
}
.dual-slider__thumb {
touch-action: none;
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);
}