软件包详情页版本标签样式

This commit is contained in:
lutinglt
2025-09-08 15:53:01 +08:00
parent e387008ee5
commit 6bb138e964

View File

@@ -97,6 +97,25 @@ export const packagesDetail = css`
svg { svg {
color: ${themeVars.color.text.self}; color: ${themeVars.color.text.self};
} }
// 应该只选中版本中的 a 标签
&.tw-flex {
justify-content: space-between;
> a {
border: 1px solid ${themeVars.color.light.border};
border-radius: 25px;
font-size: 12px;
padding: 0px 6px;
min-height: 20px;
flex: none !important;
&:hover {
text-decoration: none;
}
}
// 不知道什么东西
&::after {
display: none;
}
}
} }
} }
} }