poe-svelte-ui-lib 1.5.3 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Tabs/Tabs.svelte +3 -3
- package/package.json +1 -1
package/dist/Tabs/Tabs.svelte
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<div id={`${id}-${crypto.randomUUID().slice(0, 6)}`} class="w-full h-full flex flex-col rounded-2xl bg-(--back-color) overflow-hidden">
|
|
30
30
|
<!-- Вкладки -->
|
|
31
31
|
<div
|
|
32
|
-
class="{twMerge(
|
|
32
|
+
class="{twMerge(`bg-blue z-50 flex h-fit items-center rounded-t-2xl overflow-x-auto px-1`, wrapperClass)}
|
|
33
33
|
bg-(--bg-color)"
|
|
34
34
|
>
|
|
35
35
|
{#each items as item, index}
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
|
|
90
90
|
<style>
|
|
91
91
|
::-webkit-scrollbar-track {
|
|
92
|
-
background: var(--
|
|
92
|
+
background: var(--back-color);
|
|
93
93
|
}
|
|
94
94
|
::-webkit-scrollbar-thumb {
|
|
95
|
-
background-color: color-mix(in srgb, var(--
|
|
95
|
+
background-color: color-mix(in srgb, var(--blue-color), white);
|
|
96
96
|
border-radius: 8px;
|
|
97
97
|
cursor: pointer;
|
|
98
98
|
}
|