get-elementa-ui 1.10.1 → 1.10.2

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": "get-elementa-ui",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "description": "Elementa UI components library.",
5
5
  "homepage": "https://deriva.xyz/branding",
6
6
  "main": "dist/index.js",
@@ -348,14 +348,6 @@ For charts, graphs, and status badges. These are vital for dashboards (Deriva's
348
348
  /* !SECTION: ENERGY 5: BUBBLEGUM ICE (Hot Pink + Aqua Mint) */
349
349
  }
350
350
 
351
-
352
- /* TODO: Keeping this for now as shadcn might need it. Once our library is up and stable, starting removing this gradually. */
353
- /* Base Styles */
354
- /* @layer base {
355
- * { @apply border-gray-200 dark:border-gray-800; }
356
- body { @apply bg-background text-foreground transition-colors duration-300; }
357
- } */
358
-
359
351
  @layer base {
360
352
  * {
361
353
  @apply border-border outline-ring/50;
@@ -363,4 +355,18 @@ For charts, graphs, and status badges. These are vital for dashboards (Deriva's
363
355
  body {
364
356
  @apply bg-background text-foreground;
365
357
  }
366
- }
358
+ }
359
+
360
+ @layer utilities {
361
+ .bg-primary {
362
+ background-color: var(--primary);
363
+ }
364
+
365
+ .no-scrollbar {
366
+ scrollbar-width: none;
367
+ -ms-overflow-style: none;
368
+ &::-webkit-scrollbar {
369
+ display: none;
370
+ }
371
+ }
372
+ }