1.25.4 & fix package details width on phone

This commit is contained in:
lutinglt
2026-01-23 19:02:50 +08:00
parent ec0f8660e9
commit 59b9c66c4e
6 changed files with 20 additions and 12 deletions

View File

@@ -309,7 +309,7 @@ export const comment = css`
.ui.basic.label {
${botLabelStyle}
}
a:has(relative-time){
a:has(relative-time) {
text-decoration: underline;
}
// 已编辑按钮

View File

@@ -123,3 +123,15 @@ export const packagesDetail = css`
}
}
`;
// 手机页面下的软件包详细信息页
export const packagesListMobile = css`
@media (max-width: 767.98px) {
.page-content.packages .packages-content {
.packages-content-left,
.packages-content-right {
width: 100%;
}
}
}
`;