This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<template>
<AppDesktopHeader />
<PanelToolbar v-if="toolbar" />
<slot />
<AppDesktopFooter />
</template>
<script setup>
defineOptions({ inheritAttrs: false })
const { config } = useAttrs()
const { toolbar = false } = config.desktop || {}
</script>
<style lang="scss">
.p-dialog-mask {
@apply z-10;
.p-dialog {
@apply m-0 rtl;
.p-dialog-header {
@apply hidden;
}
.p-dialog-content {
@apply bg-transparent p-0 overflow-hidden overflow-y-auto lg:container rounded-none;
}
}
}
</style>