Skip to content

Commit

Permalink
fix(comp:timeline): modify contentMarginBottom to marginSizeLg (#1791)
Browse files Browse the repository at this point in the history
  • Loading branch information
sallerli1 committed Jan 8, 2024
1 parent 00cd10c commit bc3b27f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/timeline/theme/default.ts
Expand Up @@ -7,7 +7,7 @@

import type { CertainThemeTokens, GlobalThemeTokens } from '@idux/components/theme'
export function getDefaultThemeTokens(tokens: GlobalThemeTokens): CertainThemeTokens<'timeline'> {
const { fontSizeSm, marginSizeSm, colorSeparator } = tokens
const { fontSizeSm, marginSizeSm, marginSizeLg, colorSeparator } = tokens

return {
fontSize: fontSizeSm,
Expand All @@ -18,6 +18,6 @@ export function getDefaultThemeTokens(tokens: GlobalThemeTokens): CertainThemeTo
lineBgColor: colorSeparator,

pendingItemContentMinWidth: 40,
contentMarginBottom: 20,
contentMarginBottom: marginSizeLg,
}
}

0 comments on commit bc3b27f

Please sign in to comment.