@asd20/ui 3.2.728 → 3.2.730
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
|
@@ -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:
|
|
150
|
+
$color: var(--color__primary),
|
|
151
151
|
$background: #ffffff
|
|
152
152
|
) {
|
|
153
153
|
// display: inline-block;
|
|
@@ -170,22 +170,23 @@ export default {
|
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.circle {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
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
|
|
183
|
-
|
|
183
|
+
.circle {
|
|
184
|
+
@include icon-circle-with-triangle();
|
|
184
185
|
}
|
|
185
186
|
.asd20-swiper {
|
|
186
187
|
--fade-stop: 100%;
|
|
187
188
|
position: relative;
|
|
188
|
-
overflow:
|
|
189
|
+
overflow: visible;
|
|
189
190
|
width: calc(100% - #{space(2)});
|
|
190
191
|
padding: space(1) space(1);
|
|
191
192
|
margin: space(0) space(0) space(0) space(0);
|
|
@@ -195,10 +196,11 @@ export default {
|
|
|
195
196
|
cursor: pointer;
|
|
196
197
|
appearance: none;
|
|
197
198
|
position: absolute;
|
|
198
|
-
top:
|
|
199
|
+
top: 50%;
|
|
199
200
|
left: 0;
|
|
200
201
|
bottom: space(1);
|
|
201
202
|
z-index: 2;
|
|
203
|
+
border: 2px solid var(--color__primary);
|
|
202
204
|
|
|
203
205
|
&.swiper-button-disabled {
|
|
204
206
|
display: none;
|
|
@@ -256,6 +258,9 @@ export default {
|
|
|
256
258
|
.asd20-swiper {
|
|
257
259
|
padding: space(1) space(2);
|
|
258
260
|
width: calc(100% - #{space(4)});
|
|
261
|
+
&__prev {
|
|
262
|
+
margin-left: space(-1);
|
|
263
|
+
}
|
|
259
264
|
}
|
|
260
265
|
}
|
|
261
266
|
</style>
|