Files
api/web/components/CallbackHandler.ce.vue
Eli Bosley dd9983c8b7 feat: swap to absolute paths for css (#1224)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **Style**
- Updated CSS file paths across multiple components to reference assets
absolutely, ensuring consistent and reliable styling across the user
interface.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-03-17 16:28:49 -04:00

20 lines
355 B
Vue

<script setup lang="ts">
import { useCallbackStore } from '~/store/callbackActions';
const callbackStore = useCallbackStore();
onBeforeMount(() => {
callbackStore.watcher();
});
</script>
<template>
<slot />
</template>
<style lang="postcss">
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '~/assets/main.css';
</style>