Files
eveAI/eveai_app/static/assets/css/eveai-content-viewer.css
Josako 3815399a7e - Specialist Tuning now in a separate editor
- typeBadge formatter completed
2025-11-24 15:54:47 +01:00

31 lines
705 B
CSS

/* Content Viewer specific styles */
/* Ensure markdown text aligns left by default */
#content-document-viewer .markdown-body,
.markdown-body {
text-align: left;
}
/* Make the viewer pane scrollable with a responsive max height */
#content-document-viewer {
max-height: 60vh;
overflow: auto;
}
/* Optional readability improvements */
#content-document-viewer .markdown-body {
line-height: 1.6;
}
#content-document-viewer .markdown-body pre,
#content-document-viewer .markdown-body code {
white-space: pre-wrap;
}
/* Keep the viewer header visible while scrolling */
#content-viewer-section .card-header {
position: sticky;
top: 0;
z-index: 1;
background: var(--bs-body-bg, #fff);
}