@loomhq/lens 10.82.1 → 10.82.3

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.
@@ -36,12 +36,12 @@ const ToastWrapper = styled.div `
36
36
  gap: var(--lns-space-small);
37
37
  justify-content: space-between;
38
38
  left: 50%;
39
- min-width: ${u(35)};
40
- max-width: ${u(50)};
39
+ max-width: ${u(50)}; // Fallback when min() function is not supported
40
+ max-width: min(90%, ${u(50)});
41
41
  padding: ${u(1.5)} var(--lns-space-medium) ${u(1.5)} var(--lns-space-large);
42
42
  position: fixed;
43
43
  transform: translateX(-50%);
44
- width: calc(100% - var(--lns-space-medium));
44
+ width: max-content;
45
45
  z-index: ${props => props.zIndex};
46
46
  `;
47
47
  const ChildrenSection = styled.div `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.82.1",
3
+ "version": "10.82.3",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",