hamzus-ui 0.0.235 → 0.0.236

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": "hamzus-ui",
3
- "version": "0.0.235",
3
+ "version": "0.0.236",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -67,7 +67,7 @@
67
67
  transition-property: width;
68
68
  transition-duration: .2s;
69
69
  transition-timing-function: ease-in-out;
70
- background-color: var(--bg-2);
70
+ background-color: var(--bg-1);
71
71
  overflow-x: clip;
72
72
  overflow-y: auto;
73
73
  }
@@ -15,10 +15,7 @@
15
15
  </script>
16
16
 
17
17
  <section class="top-bar">
18
- <Tooltip.Root direction="bottom">
19
- <Tooltip.Trigger slot="trigger">
20
- <div class="opener">
21
- <IconButton onClick={toggleNav} variant="ghost">
18
+ <IconButton onClick={toggleNav} variant="ghost">
22
19
  {#if $open}
23
20
  <svg
24
21
  width="24"
@@ -55,16 +52,6 @@
55
52
  </svg>
56
53
  {/if}
57
54
  </IconButton>
58
- </div>
59
- </Tooltip.Trigger>
60
- <Tooltip.Content slot="content" style="background-color:var(--bg-2)">
61
- <h6 style="color: var(--font-2);">
62
- {$open ? 'fermé' : 'ouvrir'} la barre de navigation <Kbd letter="Alt" /> + <Kbd
63
- letter="B"
64
- />
65
- </h6>
66
- </Tooltip.Content>
67
- </Tooltip.Root>
68
55
  {#if Array.isArray($actualRoute)}
69
56
  {#each $actualRoute as route}
70
57
  {#if route.link}
@@ -101,7 +88,7 @@
101
88
  width: 100%;
102
89
  padding: 7px;
103
90
  border-bottom: 1px solid var(--stroke);
104
- background-color: var(--bg-blur);
91
+ background-color: var(--bg-1);
105
92
  backdrop-filter: blur(20px);
106
93
  -webkit-backdrop-filter: blur(20px);
107
94
  position: relative;