mirror of
https://github.com/unraid/api.git
synced 2026-01-03 15:09:48 -06:00
17 lines
311 B
Vue
17 lines
311 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">
|
|
KeyActions.ce
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="postcss">
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|