mirror of
https://github.com/unraid/api.git
synced 2026-01-05 16:09:49 -06:00
16 lines
284 B
Vue
16 lines
284 B
Vue
<script lang="ts" setup>
|
|
import 'tailwindcss/tailwind.css';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="text-white font-semibold p-4 bg-orange-400 rounded-lg">
|
|
PluginPromo.ce
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|