Files
api/web/components/DevSettings.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

30 lines
621 B
Vue

<script lang="ts" setup>
import {
Popover,
PopoverContent,
PopoverTrigger,
Button,
} from '@unraid/ui';
import { CogIcon } from '@heroicons/vue/24/solid';
</script>
<template>
<Popover>
<PopoverTrigger as-child>
<Button type="button" size="icon" class="fixed bottom-4 right-4 rounded-full bg-teal-500 z-50"><CogIcon class="size-6" /></Button>
</PopoverTrigger>
<PopoverContent>
<DummyServerSwitcher />
</PopoverContent>
</Popover>
</template>
<style lang="postcss">
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '~/assets/main.css';
</style>