2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-03-12 08:19:23 +00:00
|
|
|
css: ({ dt }) => `
|
2024-02-19 22:53:42 +00:00
|
|
|
.p-blockui {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-04-08 12:01:20 +00:00
|
|
|
.p-blockui-mask {
|
|
|
|
border-radius: ${dt('rounded.base')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-blockui-mask.p-component-overlay {
|
2024-02-19 22:53:42 +00:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2024-04-08 12:01:20 +00:00
|
|
|
.p-blockui-mask-document.p-component-overlay {
|
2024-02-19 22:53:42 +00:00
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
`
|
|
|
|
};
|