Skip to content

Commit 07484db

Browse files
authored
fix(pager): [pager] fix pager css vars default value error (#2284)
1 parent cf5f8ea commit 07484db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opentiny/vue-theme",
3-
"version": "3.18.2",
3+
"version": "3.18.3",
44
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
55
"author": "OpenTiny Team",
66
"license": "MIT",

packages/theme/src/pager/vars.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
// 分页字号(不含总条数项)
5050
--ti-pager-font-size: var(--ti-common-font-size-base, 12px);
5151
// 分页文字左边内边距
52-
--ti-pager-normal-text-padding-left: calc(var(--ti-common-space-base) * 3 + 2px, 14px);;
52+
--ti-pager-normal-text-padding-left: calc(var(--ti-common-space-base, 14px) * 3 + 2px);
5353
// 分页前往按钮|页码项文本色
5454
--ti-pager-text-color: var(--ti-common-color-text-secondary, #575d6c);
5555
// 分页下拉框按钮图标色

0 commit comments

Comments
 (0)