tauri-app: fix highlight entry size/scrollable
All checks were successful
record-daemon / Build, check and test (push) Successful in 2m14s
All checks were successful
record-daemon / Build, check and test (push) Successful in 2m14s
This commit is contained in:
@@ -1626,6 +1626,12 @@ onUnmounted(() => {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
/* Highlights sidebar delegates scrolling to the panel's internal list */
|
||||
.stats-sidebar.highlights-sidebar {
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.stats-panel {
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border-radius: 8px;
|
||||
|
||||
@@ -318,6 +318,8 @@ function formatClipDuration(clip: HighlightClip): string {
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
@@ -555,6 +557,7 @@ function formatClipDuration(clip: HighlightClip): string {
|
||||
/* Highlights List */
|
||||
.highlights-list {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -566,12 +569,14 @@ function formatClipDuration(clip: HighlightClip): string {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
gap: 0;
|
||||
min-height: 56px;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.highlight-card:hover {
|
||||
|
||||
Reference in New Issue
Block a user