diff options
Diffstat (limited to 'frontend/src/components/document/DocumentLayout.css')
| -rw-r--r-- | frontend/src/components/document/DocumentLayout.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/components/document/DocumentLayout.css b/frontend/src/components/document/DocumentLayout.css index b18bb81..ae73e7a 100644 --- a/frontend/src/components/document/DocumentLayout.css +++ b/frontend/src/components/document/DocumentLayout.css @@ -127,9 +127,13 @@ .document-content { flex: 1; overflow-y: auto; + overflow-x: hidden; display: flex; flex-direction: column; align-items: center; + scroll-behavior: smooth; + /* Ensure expanded log feeds don't break layout */ + min-height: 0; } /* Placeholder / empty state */ @@ -328,6 +332,18 @@ .file-tree-item-title { overflow: hidden; text-overflow: ellipsis; + flex: 1; +} + +.file-tree-step-count { + margin-left: auto; + font-size: 10px; + color: #666; + background: rgba(255, 255, 255, 0.06); + border-radius: 8px; + padding: 1px 6px; + flex-shrink: 0; + white-space: nowrap; } /* Responsive: mobile */ |
