hamzus-ui 0.0.199 → 0.0.201

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.199",
3
+ "version": "0.0.201",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -98,9 +98,9 @@
98
98
  <svelte:component this={row[cellKey].component} {...row[cellKey].props}
99
99
  ></svelte:component>
100
100
  {:else if row[cellKey] === null}
101
- <h4>-</h4>
101
+ <h5 style="color:var(--font-1)">-</h5>
102
102
  {:else}
103
- <h4>{row[cellKey] ?? "-"}</h4>
103
+ <h5 style="color:var(--font-1)">{row[cellKey] ?? "-"}</h5>
104
104
  {/if}
105
105
  {/if}
106
106
  <!-- si c est au format mobile on affiche le nom de la cell -->
@@ -168,7 +168,7 @@
168
168
  .cell {
169
169
  text-align: left;
170
170
  width: var(--cell-width);
171
- padding: var(--pad-m);
171
+ padding: var(--pad-s);
172
172
  overflow: hidden;
173
173
  text-overflow: ellipsis;
174
174
  border-right: 1px solid var(--stroke);
@@ -178,7 +178,7 @@
178
178
  outline: 1px solid var(--accent) !important;
179
179
  z-index: 1;
180
180
  }
181
- .cell > h4 {
181
+ .cell > h5 {
182
182
  overflow: hidden;
183
183
  text-overflow: ellipsis;
184
184
  }
@@ -371,6 +371,7 @@
371
371
  min-width: 100%;
372
372
  width: max-content;
373
373
  display: flex;
374
+ border-top: 1px solid var(--stroke);
374
375
  border-bottom: 1px solid var(--stroke);
375
376
  user-select: none;
376
377
  background-color: var(--bg-blur);