Files
gitea-github-theme/styles/components/org.ts
lutinglt c46d9333ff fix org
2025-08-13 12:13:18 +08:00

22 lines
445 B
TypeScript

import { css, themeVars } from "src/types/vars";
export const org = css`
.page-content.organization {
#org-info {
.ui.header {
// 组织页面的 RSS 订阅按钮
.ui.label.button {
padding: 4px 16px;
.svg {
width: 20px;
min-width: 20px;
}
&:hover {
border-color: ${themeVars.color.light.border};
}
}
}
}
}
`;