@asd20/ui 3.2.729 → 3.2.731

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.729",
8
+ "version": "3.2.731",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -145,10 +145,10 @@ export default {
145
145
 
146
146
  // Use even-numbered diameters for smooth rendering
147
147
  @mixin icon-circle-with-triangle(
148
- $diameter: 2rem,
148
+ $diameter: 3rem,
149
149
  $arrow-width: 0.8rem,
150
150
  $color: var(--color__primary),
151
- $background: #ffffff
151
+ $background: rgba(255, 255, 255, 0.85)
152
152
  ) {
153
153
  // display: inline-block;
154
154
  vertical-align: middle;
@@ -186,7 +186,7 @@ export default {
186
186
  .asd20-swiper {
187
187
  --fade-stop: 100%;
188
188
  position: relative;
189
- overflow: hidden;
189
+ overflow: visible;
190
190
  width: calc(100% - #{space(2)});
191
191
  padding: space(1) space(1);
192
192
  margin: space(0) space(0) space(0) space(0);
@@ -200,6 +200,7 @@ export default {
200
200
  left: 0;
201
201
  bottom: space(1);
202
202
  z-index: 2;
203
+ border: 2px solid var(--color__primary);
203
204
 
204
205
  &.swiper-button-disabled {
205
206
  display: none;
@@ -247,7 +248,7 @@ export default {
247
248
 
248
249
  @media (min-width: 768px) {
249
250
  .circle {
250
- @include icon-circle-with-triangle($diameter: 3rem, $arrow-width: 1rem);
251
+ @include icon-circle-with-triangle($diameter: 4rem, $arrow-width: 1rem);
251
252
  }
252
253
  }
253
254
  @media (min-width: 1024px) {
@@ -257,6 +258,9 @@ export default {
257
258
  .asd20-swiper {
258
259
  padding: space(1) space(2);
259
260
  width: calc(100% - #{space(4)});
261
+ &__prev {
262
+ margin-left: space(-1);
263
+ }
260
264
  }
261
265
  }
262
266
  </style>