导航栏右侧按钮和头像样式同步

This commit is contained in:
lutinglt
2025-07-07 13:50:03 +08:00
parent 15076d2996
commit 5116ca5cae
12 changed files with 171 additions and 89 deletions

View File

@@ -87,14 +87,22 @@ export const releases = css`
}
}
}
// 顶部右侧按钮组
.ui.small.button {
background-color: ${themeVars.color.button};
padding: 5px 16px;
min-height: auto;
line-height: 20px;
&:hover {
background-color: ${themeVars.color.hover.self};
}
`;
// 顶部右侧按钮组
export const rightButton = css`
.page-content.repository {
&.releases,
&.tags {
.ui.small.button {
background-color: ${themeVars.color.button};
padding: 5px 16px;
min-height: auto;
line-height: 20px;
&:hover {
background-color: ${themeVars.color.hover.self};
}
}
}
}