@insymetri/styleguide 0.1.10 → 0.1.11
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.
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
bind:ref={internalRef}
|
|
64
64
|
{onValueChange}
|
|
65
65
|
{...restProps}
|
|
66
|
-
class={cn('flex flex-col w-full', className)}
|
|
66
|
+
class={cn('flex flex-col w-full h-full', className)}
|
|
67
67
|
>
|
|
68
68
|
{#if overflowing}
|
|
69
|
-
<div class="flex items-center border-b border-primary
|
|
69
|
+
<div class="flex items-center border-b border-primary px-24" style="padding-left: calc(2.4rem - 1.2rem - 1px)">
|
|
70
70
|
<DropdownMenu.Root bind:open={dropdownOpen}>
|
|
71
71
|
<DropdownMenu.Trigger
|
|
72
72
|
class="[all:unset] inline-flex items-center gap-4 py-4 pr-8 pl-12 border border-primary rounded-10 bg-surface cursor-default transition-all duration-fast hover:border-strong motion-reduce:transition-none"
|
|
@@ -101,8 +101,8 @@
|
|
|
101
101
|
<Tabs.List
|
|
102
102
|
bind:ref={listEl}
|
|
103
103
|
class={cn(
|
|
104
|
-
'flex border-b border-primary gap-16 pl-24 overflow-hidden
|
|
105
|
-
overflowing && 'h-0 invisible border-b-0 py-0',
|
|
104
|
+
'flex border-b border-primary gap-16 pl-24 overflow-hidden',
|
|
105
|
+
overflowing && '!h-0 invisible border-b-0 py-0',
|
|
106
106
|
listClass
|
|
107
107
|
)}
|
|
108
108
|
>
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
<Tabs.Content
|
|
130
130
|
value={tab.value}
|
|
131
131
|
class={cn(
|
|
132
|
-
'
|
|
132
|
+
'flex-1 min-h-0 outline-none focus-visible:outline-2 focus-visible:outline-primary focus-visible:outline-offset-2 focus-visible:rounded-4',
|
|
133
133
|
contentClass
|
|
134
134
|
)}
|
|
135
135
|
>
|