@dataloop-ai/components 0.17.46 → 0.17.47

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": "@dataloop-ai/components",
3
- "version": "0.17.46",
3
+ "version": "0.17.47",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -216,9 +216,16 @@ export default defineComponent({
216
216
  padding: 5px;
217
217
  }
218
218
  &__description {
219
- margin-top: auto;
220
- padding: 5px;
221
- font-size: 10px;
219
+ overflow: hidden;
220
+ text-overflow: ellipsis;
221
+ display: -webkit-box;
222
+ -webkit-box-orient: vertical;
223
+ -webkit-line-clamp: 2;
224
+ line-height: 1;
225
+ max-height: 1 * 2;
226
+ margin: 20px 16px 16px 16px;
227
+ font-size: 12px;
228
+ color: var(--dl-color-medium);
222
229
  }
223
230
 
224
231
  &__drag {