@exakt/ui 0.0.61 → 0.0.63

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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "exakt-ui",
3
3
  "configKey": "exakt",
4
- "version": "0.0.61"
4
+ "version": "0.0.63"
5
5
  }
@@ -150,7 +150,8 @@ watch(
150
150
 
151
151
  if (newList && activatorRect) {
152
152
  if (window?.innerWidth < newList.getBoundingClientRect().right) {
153
- state.x = -1 * activatorRect.width * 2;
153
+ state.x =
154
+ window?.innerWidth - newList.getBoundingClientRect().right - 15;
154
155
  }
155
156
  }
156
157
  },
@@ -7,7 +7,7 @@
7
7
  :solid="true"
8
8
  background="transparent"
9
9
  class="nav-btn"
10
- :class="{ 'grow-on-mobile': responsive }"
10
+ :class="{ 'grow-on-mobile': responsive, 'pa-3': !label }"
11
11
  align="center"
12
12
  :active="active"
13
13
  :button="false"
@@ -18,11 +18,12 @@
18
18
  >
19
19
  <div
20
20
  v-if="icon"
21
- class="icon-wrapper flex-center mr-2"
21
+ class="icon-wrapper flex-center"
22
+ :class="{ 'mr-2': label }"
22
23
  >
23
24
  <e-icon
24
25
  class="icon"
25
- size="20"
26
+ :size="label ? 20 : 25"
26
27
  :fill="active"
27
28
  >
28
29
  {{ icon }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exakt/ui",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "description": "A UI library for Nuxt.js",
5
5
  "license": "MIT",
6
6
  "type": "module",