@hyperbridge/ui 0.0.31 → 0.0.33

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": "@hyperbridge/ui",
3
- "version": "0.0.31",
3
+ "version": "0.0.33",
4
4
  "sideEffects": false,
5
5
  "license": "MIT",
6
6
  "private": false,
package/styles/base.css CHANGED
@@ -8,6 +8,8 @@
8
8
  /* Fonts */
9
9
  --font-heading: "Novatica", "sans-serif";
10
10
  --font-heading-alt: "Aeonik", "sans-serif";
11
+ --font-mono: "AeonikMono", "sans-serif";
12
+ --font-sans: "Aeonik", "sans-serif";
11
13
 
12
14
  /* Colors */
13
15
  --color-primary: oklch(57.27% 0.222 263);
@@ -302,3 +304,7 @@ input[type="number"]::-webkit-inner-spin-button {
302
304
  height: 100vh;
303
305
  }
304
306
  }
307
+
308
+ .transition-default {
309
+ @apply duration-200 ease-in-out transition-all;
310
+ }