@marimo-team/islands 0.23.9-dev2 → 0.23.9-dev3

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": "@marimo-team/islands",
3
- "version": "0.23.9-dev2",
3
+ "version": "0.23.9-dev3",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -68,7 +68,7 @@ const MinimapCell: React.FC<MinimapCellProps> = (props) => {
68
68
  className={cn(
69
69
  "group bg-transparent text-left w-full flex relative justify-between items-center",
70
70
  "border-none rounded cursor-pointer",
71
- "h-[21px] pl-[59px] font-inherit",
71
+ "h-[21px] pl-[65px] font-inherit",
72
72
  isSelected
73
73
  ? "text-primary-foreground"
74
74
  : "text-(--gray-8) hover:text-(--gray-9)",
@@ -106,7 +106,7 @@ const MinimapCell: React.FC<MinimapCellProps> = (props) => {
106
106
  </div>
107
107
  <svg
108
108
  className={cn(
109
- "absolute overflow-visible top-[10.5px] left-[calc(var(--spacing-extra-small,8px)+25px)] pointer-events-none",
109
+ "absolute overflow-visible top-[10.5px] left-[calc(var(--spacing-extra-small,8px)+31px)] pointer-events-none",
110
110
  isSelected ? "z-[1]" : "z-0",
111
111
  getTextColor({ cell, selectedCell }),
112
112
  )}