@kolkrabbi/kol-component 0.12.13 → 0.12.15
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.15",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -150,10 +150,10 @@ const ContentFilters = ({
|
|
|
150
150
|
<div
|
|
151
151
|
className="flex items-center justify-center rounded-sm cursor-pointer hover:bg-fg-04 transition-colors"
|
|
152
152
|
style={{
|
|
153
|
-
height:
|
|
154
|
-
width: searchOpen ? 200 :
|
|
155
|
-
background: searchOpen ? 'var(--kol-
|
|
156
|
-
border:
|
|
153
|
+
height: 32,
|
|
154
|
+
width: searchOpen ? 200 : 32,
|
|
155
|
+
background: searchOpen ? 'var(--kol-surface-secondary)' : 'transparent',
|
|
156
|
+
border: 'none',
|
|
157
157
|
transition: 'width 600ms cubic-bezier(0.16, 1, 0.3, 1), background 400ms cubic-bezier(0.16, 1, 0.3, 1)',
|
|
158
158
|
overflow: 'hidden',
|
|
159
159
|
}}
|