@asd20/ui 3.2.728 → 3.2.729

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.728",
8
+ "version": "3.2.729",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -147,7 +147,7 @@ export default {
147
147
  @mixin icon-circle-with-triangle(
148
148
  $diameter: 2rem,
149
149
  $arrow-width: 0.8rem,
150
- $color: #000000,
150
+ $color: var(--color__primary),
151
151
  $background: #ffffff
152
152
  ) {
153
153
  // display: inline-block;
@@ -170,17 +170,18 @@ export default {
170
170
  }
171
171
 
172
172
  .circle {
173
- @include icon-circle-with-triangle();
174
- }
175
-
176
- .circle.-right {
177
- transform: rotate(90deg);
178
- }
179
- .circle.-bottom {
180
- transform: rotate(180deg);
173
+ &.-right {
174
+ transform: translateY(-50%) rotate(90deg);
175
+ }
176
+ &.-bottom {
177
+ transform: translateY(-50%) rotate(180deg);
178
+ }
179
+ &.-left {
180
+ transform: translateY(-50%) rotate(270deg);
181
+ }
181
182
  }
182
- .circle.-left {
183
- transform: rotate(270deg);
183
+ .circle {
184
+ @include icon-circle-with-triangle();
184
185
  }
185
186
  .asd20-swiper {
186
187
  --fade-stop: 100%;
@@ -195,7 +196,7 @@ export default {
195
196
  cursor: pointer;
196
197
  appearance: none;
197
198
  position: absolute;
198
- top: 40%;
199
+ top: 50%;
199
200
  left: 0;
200
201
  bottom: space(1);
201
202
  z-index: 2;