@kolkrabbi/kol-component 0.12.13 → 0.12.14

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.13",
3
+ "version": "0.12.14",
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,8 +150,8 @@ 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: 30,
154
- width: searchOpen ? 200 : 30,
153
+ height: 32,
154
+ width: searchOpen ? 200 : 32,
155
155
  background: searchOpen ? 'var(--kol-fg-04)' : 'transparent',
156
156
  border: searchOpen ? '1px solid var(--kol-fg-08)' : '1px solid transparent',
157
157
  transition: 'width 600ms cubic-bezier(0.16, 1, 0.3, 1), background 400ms cubic-bezier(0.16, 1, 0.3, 1)',