Skip to content

Commit 6b03409

Browse files
committedJul 12, 2023
fix:调整Stepper大小
1 parent f608327 commit 6b03409

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed
 

‎packages/core/src/Stepper/ControlValue.tsx

+11-11
Original file line numberDiff line numberDiff line change
@@ -78,27 +78,27 @@ export const styles = StyleSheet.create({
7878
borderBottomLeftRadius: 0,
7979
},
8080
small: {
81-
height: 30,
82-
width: 30,
81+
height: 24,
82+
width: 24,
8383
},
8484
default: {
85-
height: 36,
86-
width: 36,
85+
height: 30,
86+
width: 30,
8787
},
8888
large: {
89-
height: 44,
90-
width: 44,
89+
height: 38,
90+
width: 38,
9191
},
9292
smallText: {
93-
fontSize: 24,
94-
lineHeight: 26,
93+
fontSize: 20,
94+
lineHeight: 24,
9595
},
9696
defaultText: {
97-
fontSize: 30,
98-
lineHeight: 34,
97+
fontSize: 24,
98+
lineHeight: 30,
9999
},
100100
largeText: {
101-
fontSize: 38,
101+
fontSize: 28,
102102
lineHeight: 42,
103103
},
104104
});

‎packages/core/src/Stepper/ShowValue.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export interface ShowValueProps {
1313
onChange: (val: number | 'min') => unknown;
1414
}
1515
enum Width {
16-
small = 50,
17-
default = 70,
18-
large = 100,
16+
small = 42,
17+
default = 62,
18+
large = 92,
1919
}
2020
function ShowValue(props: ShowValueProps) {
2121
const { size, value, textInput, color, disabled, width, onChange } = props;

0 commit comments

Comments
 (0)
Please sign in to comment.