@appartmint/mint 4.0.5 → 4.0.6

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "4.0.5",
4
+ "version": "4.0.6",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -71,6 +71,7 @@ body {
71
71
  justify-content: flex-end;
72
72
  flex-wrap: nowrap;
73
73
  overflow: visible;
74
+ gap: 1rem;
74
75
 
75
76
  &>li {
76
77
  position: relative;
@@ -99,14 +100,14 @@ body {
99
100
  font-size: $arrow-size;
100
101
  position: absolute;
101
102
  top: 50%;
102
- transform: translateY(-50%);
103
+ transform: translate(-50%, -50%);
103
104
  margin-left: $arrow-margin;
104
105
  transition: transform css-var(delay-default);
105
106
  }
106
107
 
107
108
  @include states(hover, focus, expanded) {
108
109
  &::after {
109
- transform: translateY(-50%) rotate(90deg);
110
+ transform: translate(-50%, -50%) rotate(90deg);
110
111
  }
111
112
  }
112
113
  }