Synchronized repository commit page layout and styles

This commit is contained in:
lutinglt
2025-11-29 18:09:27 +08:00
parent ca7207db06
commit 3084a5f54e
9 changed files with 474 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import { css, themeVars, otherThemeVars } from "src/types/vars";
export const commitSignBadge = css`
.github-theme-sha {
border-radius: ${otherThemeVars.border.radius};
font-weight: 500;
padding: 0px 8px;
height: 26px;
display: flex;
align-items: center;
justify-content: center;
&:hover {
background-color: ${themeVars.color.hover.self};
}
}
`;