mirror of
https://github.com/unraid/api.git
synced 2026-04-28 03:01:12 -05:00
e719780ee8
- Updated CSS variables and utility classes for improved theme integration and style consistency across components. - Introduced a new responsive modal component to enhance user experience on various screen sizes. - Refined button and badge styles to ensure better visual hierarchy and interaction feedback. - Adjusted component imports and structure for better modularity and maintainability. - Removed deprecated styles and streamlined CSS for improved performance and clarity.
13 lines
378 B
Vue
13 lines
378 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@unraid/ui';
|
|
</script>
|
|
|
|
<template>
|
|
<Button
|
|
variant="ghost"
|
|
class="text-xs font-semibold transition-colors duration-150 ease-in-out border-t-0 border-l-0 border-r-0 border-b-2 border-transparent hover:border-orange-dark focus:border-orange-dark focus:outline-hidden h-auto p-0"
|
|
>
|
|
<slot />
|
|
</Button>
|
|
</template>
|