fix: 修复我的信息界面中的header无法粘性布局的bug以及解决了一些-webkit样式警告

fixed: #588
This commit is contained in:
AnNingUI
2025-08-16 13:49:24 +08:00
parent 1f74a29dce
commit 300f8705ef
3 changed files with 4 additions and 0 deletions

View File

@@ -536,6 +536,7 @@ const sanitizeDescription = (text) => stripMarkdown(text)
font-size: 14px;
color: gray;
display: -webkit-box;
line-clamp: 3;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;

View File

@@ -636,6 +636,8 @@ onActivated(() => {
.message-page {
background-color: var(--background-color);
overflow-x: hidden;
height: calc(100vh - var(--header-height));
overflow-y: auto;
}
.message-page-header {

View File

@@ -867,6 +867,7 @@ onMounted(async () => {
direction: ltr;
height: 300px;
width: 2px;
appearance: none;
-webkit-appearance: none;
background: transparent;
}