Add deprecation notice

pull/5677/head
Cagatay Civici 2024-04-29 12:18:36 +03:00
parent b29e165d35
commit 142524f06e
2 changed files with 9 additions and 8 deletions

View File

@ -145,8 +145,9 @@
@include doc-link();
}
}
}
.notification {
.doc-notification {
line-height: 1.5;
padding: 1rem;
font-weight: 500;
@ -154,7 +155,6 @@
background: var(--mark-background);
color: var(--mark-text);
}
}
.doc-section-nav {
position: sticky;

View File

@ -1,4 +1,5 @@
<template>
<div class="doc-notification">TabView is deprecated, use <NuxtLink to="/tabs" class="doc-link">Tabs</NuxtLink> instead.</div>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>