Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions apps/desktop/src/renderer/styles/daily-review.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@

.maka-daily-review-content {
display: grid;
/* One column, never wider than the panel — same guard as
.maka-module-page-panel. Without it this grid's implicit track sizes to
max-content, and the active-conversations rows carry a `white-space:
nowrap` preview whose full width then stretched the track past the clamped
column, pushing each row's trailing timestamp off the plate. `minmax(0,
1fr)` makes the row shrink and truncate instead. */
grid-template-columns: minmax(0, 1fr);
gap: var(--space-5);
}

Expand Down