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,10 +1,29 @@
import BaseStyle from 'primevue/base/style';
const theme = ({ dt }) => `
.p-blockui {
position: relative;
}
.p-blockui-mask {
border-radius: ${dt('rounded.base')};
}
.p-blockui-mask.p-component-overlay {
position: absolute;
}
.p-blockui-mask-document.p-component-overlay {
position: fixed;
}
`;
const classes = {
root: 'p-blockui'
};
export default BaseStyle.extend({
name: 'blockui',
theme,
classes
});