fix: add @reference directive for Tailwind 4 scoped styles
Some checks failed
Build Docker Image / build (push) Failing after 1m46s

Add @reference 'tailwindcss' to components using @apply in scoped styles:
- MainNavigation.vue
- SubNavigation.vue
- GlobalSearchBar.vue

Required for Tailwind CSS 4 compatibility with scoped Vue styles.
This commit is contained in:
Ruslan Bakiev
2026-01-08 07:35:56 +07:00
parent 5d1ce88927
commit 6d1dd4eac5
3 changed files with 6 additions and 0 deletions

View File

@@ -209,6 +209,8 @@ onMounted(() => {
</script>
<style scoped>
@reference "tailwindcss";
.search-field {
@apply flex flex-col px-4 py-2 min-w-32;
}