Fixed #5667 - Remove base option from theme config

This commit is contained in:
Mert Sincan 2024-05-01 09:26:48 +01:00
parent 6d688ef675
commit 0979dde96d
438 changed files with 10872 additions and 11957 deletions

View file

@ -1,5 +1,19 @@
import BaseStyle from 'primevue/base/style';
const theme = ({ dt }) => `
.p-orderlist {
display: flex;
gap: 1.125rem;
}
.p-orderlist-controls {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0.5rem;
}
`;
const classes = {
root: 'p-orderlist p-component',
controls: 'p-orderlist-controls'
@ -7,5 +21,6 @@ const classes = {
export default BaseStyle.extend({
name: 'orderlist',
theme,
classes
});