Tokens for PickList and OrderList
parent
f0009d378b
commit
4f617533fb
|
@ -3,14 +3,14 @@ import BaseStyle from 'primevue/base/style';
|
||||||
const theme = ({ dt }) => `
|
const theme = ({ dt }) => `
|
||||||
.p-orderlist {
|
.p-orderlist {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 1.125rem;
|
gap: ${dt('orderlist.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-orderlist-controls {
|
.p-orderlist-controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 0.5rem;
|
gap: ${dt('orderlist.controls.gap')};
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -3,14 +3,14 @@ import BaseStyle from 'primevue/base/style';
|
||||||
const theme = ({ dt }) => `
|
const theme = ({ dt }) => `
|
||||||
.p-picklist {
|
.p-picklist {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 1.125rem;
|
gap: ${dt('picklist.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-picklist-controls {
|
.p-picklist-controls {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 0.5rem;
|
gap: ${dt('picklist.controls.gap')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-picklist-list-container {
|
.p-picklist-list-container {
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
export default {};
|
export default {
|
||||||
|
root: {
|
||||||
|
gap: '1.125rem'
|
||||||
|
},
|
||||||
|
controls: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
export default {};
|
export default {
|
||||||
|
root: {
|
||||||
|
gap: '1.125rem'
|
||||||
|
},
|
||||||
|
controls: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
export default {};
|
export default {
|
||||||
|
root: {
|
||||||
|
gap: '1.125rem'
|
||||||
|
},
|
||||||
|
controls: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
|
@ -1 +1,8 @@
|
||||||
export default {};
|
export default {
|
||||||
|
root: {
|
||||||
|
gap: '1.125rem'
|
||||||
|
},
|
||||||
|
controls: {
|
||||||
|
gap: '0.5rem'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue