mirror of
https://github.com/lutinglt/gitea-github-theme.git
synced 2025-12-21 14:16:28 +00:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { css, themeVars } from "src/types/vars";
|
|
|
|
export const table = css`
|
|
.ui.table > tr > td,
|
|
.ui.table > tbody > tr > td {
|
|
border-top: 1px solid ${themeVars.color.secondary.alpha.num70};
|
|
}
|
|
`;
|