mirror of
https://github.com/unraid/api.git
synced 2026-01-03 23:19:54 -06:00
17 lines
305 B
Vue
17 lines
305 B
Vue
<script lang="ts" setup>
|
|
import 'tailwindcss/tailwind.css';
|
|
import '~/assets/main.css';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="text-white font-semibold p-4 bg-orange-400 rounded-lg">
|
|
Auth.ce
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|