mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
36 lines
630 B
Vue
36 lines
630 B
Vue
<script setup lang="ts">
|
|
withDefaults(
|
|
defineProps<{
|
|
tag?: string
|
|
text?: string
|
|
srOnly?: boolean
|
|
}>(),
|
|
{
|
|
tag: 'h1',
|
|
text: undefined,
|
|
srOnly: false,
|
|
},
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="tag"
|
|
id="main-target"
|
|
tabindex="-1"
|
|
class="inline-block text-4xl font-bold"
|
|
:class="{ 'sr-only focus:not-sr-only': srOnly }"
|
|
>
|
|
<slot name="default">
|
|
{{ text }}
|
|
</slot>
|
|
</component>
|
|
</template>
|
|
|
|
<style scoped>
|
|
#main-target {
|
|
/* Need some override here because of `not-sr-only` styles */
|
|
margin-top: 2rem !important;
|
|
margin-bottom: 0.75rem !important;
|
|
}
|
|
</style>
|