Update stepper token
parent
2cb2495148
commit
a6547b5e32
|
@ -179,7 +179,7 @@ const theme = ({ dt }) => `
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-stepitem:last-of-type .p-steppanel {
|
.p-stepitem:last-of-type .p-steppanel {
|
||||||
padding: ${dt('stepper.steppanel.last.padding')};
|
padding-inline-start: ${dt('stepper.step.number.size')};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -48,9 +48,6 @@ export default {
|
||||||
steppanel: {
|
steppanel: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
color: '{content.color}',
|
color: '{content.color}',
|
||||||
padding: '0 0 0 1rem',
|
padding: '0 0 0 1rem'
|
||||||
last: {
|
|
||||||
padding: '0 0 0 1.625rem'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -48,9 +48,6 @@ export default {
|
||||||
steppanel: {
|
steppanel: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
color: '{content.color}',
|
color: '{content.color}',
|
||||||
padding: '0 0 0 1rem',
|
padding: '0 0 0 1rem'
|
||||||
last: {
|
|
||||||
padding: '0 0 0 1.625rem'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -48,9 +48,6 @@ export default {
|
||||||
steppanel: {
|
steppanel: {
|
||||||
background: '{content.background}',
|
background: '{content.background}',
|
||||||
color: '{content.color}',
|
color: '{content.color}',
|
||||||
padding: '0 0 0 1rem',
|
padding: '0 0 0 1rem'
|
||||||
last: {
|
|
||||||
padding: '0 0 0 1.625rem'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -253,16 +253,5 @@ export interface StepperDesignTokens extends ColorSchemeDesignToken<StepperDesig
|
||||||
* @designToken stepper.steppanel.padding
|
* @designToken stepper.steppanel.padding
|
||||||
*/
|
*/
|
||||||
padding?: string;
|
padding?: string;
|
||||||
/**
|
|
||||||
* Last of steppanel
|
|
||||||
*/
|
|
||||||
last?: {
|
|
||||||
/**
|
|
||||||
* Last padding of steppanel
|
|
||||||
*
|
|
||||||
* @designToken stepper.steppanel.last.padding
|
|
||||||
*/
|
|
||||||
padding?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue