mirror of
https://github.com/unraid/api.git
synced 2026-01-06 00:30:22 -06:00
- 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.
19 lines
340 B
Vue
19 lines
340 B
Vue
<script setup lang="ts">
|
|
export interface Props {
|
|
colorClasses?: string
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
colorClasses: 'text-grey-mid border-muted',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
class="text-xs uppercase py-1 px-1.5 border-2 border-muted rounded-full"
|
|
:class="colorClasses"
|
|
>
|
|
{{ 'Beta' }}
|
|
</span>
|
|
</template>
|