@invopop/popui 0.0.77-beta8 → 0.0.77-beta9

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.
@@ -8,12 +8,12 @@ $:
8
8
  restIcons = icons.slice(maxItems, icons.length);
9
9
  </script>
10
10
 
11
- <div class="flex flex-col space-y-2 sm:flex-row sm:space-y-0 items-center overflow-x-auto">
11
+ <div class="flex flex-col space-y-2 sm:flex-row sm:space-y-0 items-center">
12
12
  {#each mainIcons as icon, i (i)}
13
13
  <Tooltip>
14
- <TooltipTrigger>
14
+ <TooltipTrigger class="flex-shrink-0">
15
15
  <div
16
- class="p-1.5 border rounded-md border-neutral-200 flex items-center space-x-1 bg-white text-neutral-800 flex-shrink-0"
16
+ class="p-1.5 border rounded-md border-neutral-200 flex items-center space-x-1 bg-white text-neutral-800"
17
17
  >
18
18
  <img src={icon.url} alt={icon.name} class="w-4 h-4" />
19
19
  </div>
@@ -28,7 +28,7 @@ $:
28
28
  {#if restIcons.length}
29
29
  <div class="hidden sm:block h-px w-3 border border-neutral-200 mx-px flex-shrink-0" />
30
30
  <Tooltip>
31
- <TooltipTrigger>
31
+ <TooltipTrigger class="flex-shrink-0">
32
32
  <div
33
33
  class="flex items-center justify-center text-neutral-500 font-medium text-base h-7 w-7"
34
34
  >
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@invopop/popui",
3
3
  "license": "MIT",
4
- "version": "0.0.77-beta8",
4
+ "version": "0.0.77-beta9",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && npm run package",