Rework frontend

This commit is contained in:
F4ilji
2025-03-23 00:38:16 +05:00
parent 17518ceed2
commit 49072e50c7
438 changed files with 14375 additions and 20015 deletions
@@ -0,0 +1,37 @@
<template>
<ol style="white-space: nowrap;" class="flex items-center whitespace-normal min-w-0 flex-nowrap hide-scrollbar overflow-x-scroll" aria-label="Breadcrumb">
<slot />
</ol>
</template>
<script>
export default {
name: "BreadcrumbsWrapper",
data() {
return {
}
},
methods: {
},
}
</script>
<style scoped>
/* Скрытие горизонтальной полосы прокрутки */
.hide-scrollbar {
overflow-x: scroll; /* или auto, в зависимости от вашего случая */
}
.hide-scrollbar::-webkit-scrollbar {
display: none; /* Для WebKit-браузеров (Chrome, Safari) */
}
.hide-scrollbar {
-ms-overflow-style: none; /* Для IE и Edge */
scrollbar-width: none; /* Для Firefox */
}
</style>
@@ -0,0 +1,16 @@
<template>
<div class="px-4 py-4 gap-3 flex justify-center md:items-center border-gray-200">
<slot />
</div>
</template>
<script>
export default {
name: "HeadItemsWrapper"
}
</script>
<style scoped>
</style>