Skip to content

Commit cd3fe88

Browse files
committed
fix: list layout height
Signed-off-by: greta <[email protected]>
1 parent e725c5f commit cd3fe88

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/components/MailboxThread.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ export default {
466466
}
467467
.envelope-list {
468468
overflow-y: auto;
469+
flex: 1 1 auto;
469470
}
470471
.information-icon {
471472
opacity: .7;

src/components/SearchMessages.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,11 @@ export default {
600600
<style lang="scss">
601601
.search-messages {
602602
border-bottom: 1px solid var(--color-border);
603+
position: sticky;
604+
top: 0;
605+
z-index: 10;
606+
height: 52px;
607+
background-color: var(--color-main-background);
603608
&__input {
604609
min-height: 52px;
605610
margin-inline-start: calc(var(--app-navigation-padding)*2 + var(--default-clickable-area));

0 commit comments

Comments
 (0)