tecitheme 0.11.15 → 0.11.17

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.
@@ -335,15 +335,14 @@
335
335
  {#each $selectedTable.columns as column}
336
336
  <!-- Mobile table headings -->
337
337
  <div class="sm:hidden sticky top-16 flex flex-row bg-white z-20 w-full">
338
- <div class="flex flex-col w-full border-t py-8 {column.highlightOption ? getColorStyles("border", data.color) : ""}">
338
+ <div class="flex flex-col w-full border-t py-8 h-40 {column.highlightOption ? getColorStyles("border", data.color) : ""}">
339
339
  <h3 class="font-semibold leading-6 text-gray-900 {column.highlightOption ? getColorStyles("text", data.color) : ""}">
340
340
  {column.name}
341
341
  </h3>
342
342
  {#if column.description}
343
- <p>{@html column.description}</p>
343
+ <p class="line-clamp-3 px-2">{@html column.description}</p>
344
344
  {/if}
345
345
  </div>
346
- <div class="border-t w-full" />
347
346
  </div>
348
347
 
349
348
  <!-- Mobile tables -->
@@ -352,7 +351,7 @@
352
351
  {#if sortFeaturesByOrder(category.features, column.name).length > 0}
353
352
 
354
353
  <!-- Category Headings -->
355
- <h4 id={makeIdString(column.name + " " + category.name)} class="sticky top-44 sm:hidden block font-semibold leading-6 text-gray-900 w-full bg-white z-20 py-2 scroll-mt-36"><a href={"#" + makeIdString(column.name + " " + category.name)}>{category.name}</a></h4>
354
+ <h4 id={makeIdString(column.name + " " + category.name)} class="sticky top-48 sm:hidden block font-semibold leading-6 text-gray-900 w-full bg-white z-20 py-2 scroll-mt-36"><a href={"#" + makeIdString(column.name + " " + category.name)}>{category.name}</a></h4>
356
355
 
357
356
  <div class="sm:hidden relative flex flex-col">
358
357
  <!-- Tables -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecitheme",
3
- "version": "0.11.15",
3
+ "version": "0.11.17",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "dev": "vite dev",