Files
api/web/components/UserProfile/Beta.vue
Eli Bosley e719780ee8 refactor: enhance component styles and introduce responsive modal
- 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.
2025-09-01 20:06:48 -04:00

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>