@dolanske/vui 0.3.3 → 0.4.0

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.
@@ -57,7 +57,9 @@ const id = useId()
57
57
  <template>
58
58
  <div
59
59
  ref="popoutAnchor"
60
- class="inline-block"
60
+ :style="{
61
+ width: 'fit-content',
62
+ }"
61
63
  :aria-describedby="id"
62
64
  @mouseenter="hoverAnchor = true"
63
65
  @mouseleave="hoverAnchor = false"
@@ -8,6 +8,8 @@
8
8
  @use './fonts.scss';
9
9
 
10
10
  :root {
11
+ color-scheme: dark;
12
+
11
13
  --container-xs: 360px;
12
14
  --container-s: 498px;
13
15
  --container-m: 856px;
@@ -40,9 +42,9 @@
40
42
  --space-xxl: 48px;
41
43
  --space-xxxl: 64px;
42
44
 
43
- --transition-fast: 0.08s all ease-in-out;
44
- --transition: 0.14s all ease-in-out;
45
- --transition-slow: 0.3s all ease-in-out;
45
+ --transition-fast: 0.15s all cubic-bezier(0.65, 0, 0.35, 1);
46
+ --transition: 0.2s all cubic-bezier(0.65, 0, 0.35, 1);
47
+ --transition-slow: 0.35s all cubic-bezier(0.65, 0, 0.35, 1);
46
48
 
47
49
  --color-bg: rgb(18, 18, 18);
48
50
  --color-bg-raised: rgb(28, 28, 28);